Search results

  1. X

    PHP undo unlink() function in localhost?

    No you can't, but try making a system restore. Hope that helps.
  2. X

    Forms and PHP variables?

    <?php $subject = 'Hello world.'; echo $subject; ?> That will display: Hello world. Hope that helps.
  3. X

    HTML/CSS issue on table....?

    Remove all that <font color> and add in your css. .color_white { color: #fff; } And then in your HTML page. <div class="color_white">YOUR TABLE GOES HERE</div> You can also just add in your css.. html { color: #fff; } To make the font color white in all your website pages.
Back
Top