Jump to content

Need php password login help with existing page


justjack

Recommended Posts

All page coding and css are at [url=http://www.loadedmoment.com/index.php]http://www.loadedmoment.com/index.php [/url]

Problem is this. I have no problem centering the login info, but only on my computer. I need it to center on every computer. And still keep the layout of the code after login.

Question: Doesn't the php info stay where it is, or can I write it into my current layout?
php is parsed on the server. then it all gets sent to the client. if you had for instance:

blah.php
[code]
<html>
<head></head>
<body>
<table><tr><td>
  <?php
    echo "blahblahblah";
  ?>
</td></tr></table>
</body>
</html>
[/code]

The server will look at that, parse the php and send this to the client:

[code]
<html>
<head></head>
<body>
<table><tr><td>
  blahblahblah
</td></tr></table>
</body>
</html>
[/code]


Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.