Jump to content

suigion

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

suigion's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, I encounter this problem : Fatal error: Cannot instantiate non-existent class: domdocument in c:\inetpub\wwwroot\blogzone\xml_sample2.php on line 2 I have do a research, but I haven't found the solution. Did anybody know how to solve this?? Btw, I'm using PHP version 4. Thanks in advance
  2. hi all, How do I copy variable from one page to another page in PHP? For example: I want to put a $var in page A into page B. Thanks...
  3. thanks for your idea, but the problem is not solved yet. I think I have to configue the PHP so that it can support MySQL operation. Did anybody know how to change the php.ini file ??? Thnks
  4. Did anybody know how to configure PHP5 to support MySQL?? Thanks...
  5. Hi, I have try your suggestions, but the browser display nothing. It just blank... Do I need to install additional things?? I have install MySQL and PHP 5... Thanks...
  6. Hi All, I am new in PHP. I try to insert data into MySQL Table, table name is "member".But, nothing happen. The table still contains 0 row. Here is the code: <?php $user = $_POST["username"]; $email = $_POST["email"]; $password = $_POST["password"]; $db = mysql_connect("localhost","root","suigion"); mysql_select_db("blogzone",$db); $sql = "INSERT INTO member(Username, Email, Password) VALUES ('$user','$email','$password')"; mysql_query($sql,$db); mysql_close($db); ?> Can anyody tell me what's wrong with the code??? Thanks in advance...
×
×
  • 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.