• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Php fast. (not hard)

WibbenZ

Global Moderator
Staff member
Global Moderator
Joined
Oct 16, 2008
Messages
6,374
Solutions
229
Reaction score
1,503
Location
Sweden
I got an homepage (tfs-cms) And I wanna add who made the layout.
-
******
******
******
******
}

that is the homepage
- is where this text get and } is where I wanna it
Copyright &copy ******** **** 2010


code
PHP:
    		<div id="footer">                                                                                                                                                                                                                                                                     
    					Copyright &copy; **** ***</a> 2010<br />                                                                                                                                                                                                                        
   					Page generated in: <?PHP echo round($time, 4); ?> seconds                                                                                                                                                                                                                     
    			</div>                                                                                                                                                                                                                                                                            
    				                                                                                                                                                                                                                                                                              
    				          <b>  Homepage by ***** ********, Layout by ******* ******** &copy;.</b><br/>Page has been viewed <?PHP echo $page_views; ?> times.
 
Last edited:
Something like this I think

PHP:
    $main_content .= '</table><table border="0" cellspacing="1" cellpadding="4" width="100%"><tbody><tr><td><div style="text-align: right; margin: 20px auto; font-size: 10px;">Coded by <a target="_blank">YourNamehere</a></div></td></tr></tbody></table>';

Rep if this helps
 
PHP:
<table width="982" border="0" align="center" cellpadding="0" cellspacing="0">
	<tr>
		<td class="text8">Copyright (c) 2010 Your name. All rights reserved. </td>
	</tr>
	<tr>
		<td class="text8">&nbsp;</td>
	</tr>
	<tr>
		<td class="text8">&nbsp;</td>
	</tr>
</table>
 
still gets in the north of the homepage..
I wanna like OTLand that south of the page it says all the creds
 
Back
Top