Jump to content
MakeWebGames

Recommended Posts

Posted

if($db->num_rows($uq) == 0) { die("I'm sorry a user doesn't exist with that ID!"); } thats the line 23 ...

Fatal error: Call to undefined function row() in /*********/*****.php on line 23

Posted

Re: Little Error

 

Fatal error: Call to undefined function row() in /*********/*****.php on line 23

It's saying there is no function called row().....

Posted

Re: Little Error

Fatal error: Call to undefined function row() in /*********/*****.php on line 23

It's saying there is no function called row().....

Yet on that line there is no function being called with the name of row(), So you really need to post atleast 10 lines.

Posted

Re: Little Error

Ok here goes

{
die("You have already sent this user a proposal!

[url='index.php']Back[/url]
");
} else {
$uq=$db->query("SELECT * FROM users WHERE userid=$_GET[iD]");
if($db->num_rows($uq) == 0) { die("I'm sorry a user doesn't exist with that ID!"); }
if($_POST['reason'] and $_POST['user'] and $_POST['propose'])
{
$_POST['reason']=str_replace(row("<",">","/n"), row("","","
"), $_POST['reason']);
$_POST['reason']=$_POST['reason']."
[b]$ir[username] proposed to you with a [b]$_POST[propose][/b]!";
Posted

Re: Little Error

{
die("You have already sent this user a proposal!

[url='index.php']Back[/url]
");
} else {
$uq=$db->query("SELECT * FROM users WHERE userid=".$_GET[iD]);
if($db->num_rows($uq) == 0) { die("I'm sorry a user doesn't exist with that ID!"); }
if($_POST['reason'] and $_POST['user'] and $_POST['propose'])
{
$_POST['reason']=str_replace(row("<",">","/n"), row("","","
"), $_POST['reason']);
$_POST['reason']=$_POST['reason']."
[b]$ir[username] proposed to you with a [b]$_POST[propose][/b]!";

Hopefully

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.   Paste as plain text instead

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