Jump to content

ZulfadlyAshBurn

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by ZulfadlyAshBurn

  1. done. <div style="width: 760px;text-align:center;margin:0 auto;"><img src="images/header4.jpg" alt=""></div>
  2. add this code to the start of both files <?php // error reporting error_reporting(E_ALL); ini_set('display_errors', '1'); ?> what are the errors you received?
  3. Check this out. I'm using my their servers to support my live video streaming services RackSpace I was able to link all 10 servers together. 1/10 is a dedicated server with the other 9 is cloud servers. Check them out.
  4. at the top of your code add this <?php // error reporting error_reporting(E_ALL); ini_set('display_errors', '1'); ?>
  5. i would have to agree with thorpe even me myself uses geshi for my websites.
  6. have you learnt php basics? i assuming you dont understand the function of while loop, variables and sessions.
  7. the function require must be in brackets eg. <?php require("scripts/connect.php"); ?>
  8. what you mean update? from the code you gave us, its just showing the values in the db. not updating the db. please be more specific.
  9. use this <?php $tohighlight = "<?php echo 'hello'; ?>"; highlight_string($tohighlight); ?> EDIT: i just reedited the code. this should do the trick.
  10. and, did you restart your web server? Every single time you update your php.ini or httpd.conf, you MUST restart restart your web server to make the changes available.
  11. you are not echoing anything. how can you get the "\" ?
  12. what is your form code? the full one.
  13. change this echo $_POST['process.php']; to this require('process.php');
  14. Thanks for the reply russell, i will look into buying clouds server.
  15. yes, each user have the unique id. what is in your profile.php as of now?
  16. what is your form code?
  17. features.file-upload.multiple.php read the manual.
  18. I'm planning to have different servers around the world. some in Asia, USA, Europe & etc. So it is possible?
  19. I am creating a web based game and I would be receiving much traffic. I'm afraid that my server can't handle thus I'm allowing people to cohost the files. How do i do this? I wouldn't want the cohost to be able to view the php codes? There will be links on the website for user to chose which server they would like to use.
  20. clean design. i like xD
  21. everyuser should have a unique id store in the db once they sign-up. that unique id will be their profile id. so for example, if you would like to view a user, i would recommend you to create a page called profile.php and use the get function to get the id which is given. if there is no id given, show the user's profile instead. <?php session_start(); if(empty($_GET['id']) || !empty($_SESSION['username'])) { // mysql query for user's id and etc } else { //mysql query for $id and etc $id = $_GET['id']; } ?>
  22. take a look at this one link i'm not sure if this is what you wanted. but i'm assuming you are looking for this.
  23. there is a webkit scrollbar. check it out.
  24. Parse error: syntax error, unexpected '<' in /home/nimbl/public_html/new/wp-content/themes/NimblSystems/page.php on line 15
×
×
  • 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.