Jump to content

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]


This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.