Please help me why im getting this errors

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Please help me why im getting this errors

    hi guys check the screen shot, im using WAMPSERVER and everything is connected to the database etc... but don't know why it keeps showing this errors.
    Attached Files

    #2
    From line 32 to line 35 put the "@" sign before $_GET like
    PHP Code:
    $action = @$_GET['action'];
    $who = @$_GET['who']; 
    libra.wen.ru

    Comment


      #3
      Thanks man it worked, but this error message is showing on the index page, SEE SNAPSHOT.

      this is the PHP code:
      echo "<a accesskey=\"3\" href=\"lists.php?action=buds&amp;sid=$sid\">Buddie s($onbuds/$mybuds)</a>$request<br/>";

      Click image for larger version

Name:	SnapShot.png
Views:	1
Size:	137.7 KB
ID:	110055

      Comment


        #4
        Originally posted by evolution View Post
        error message is showing on the index
        Replace above code with
        PHP Code:
        echo "<a accesskey=\"3\" href=\"lists.php?action=buds&amp;sid=$sid\">Buddie s($onbuds/$mybuds)</a><br/>"
        libra.wen.ru

        Comment

        Working...
        X