Jump to content

wickedXxxxlegox

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by wickedXxxxlegox

  1. Dangit! Here: Fatal error: Call to undefined function user_exists in /home/a1922355/public_html/login.php on line 13
  2. Whoops. I was trying to fix the text. Here it is: Fatal error: Call to undefined function user_exists() in /home/a1922355/public_html/login.php on line 13
  3. Oops, forgot to tell you that. I have the file included on init.php and then init.php is required on login,php.
  4. Hi guys, I made a login, and I have a function that is not working. I'll give you all of the parts to it. Function: } function user_exists($username) { $username = sanitize($username); $query = mysql_query("SELECT COUNT (`id`) FROM `members` WHERE `username` = '$username'") return (mysql_result($query, 0) == 1) ? true : false; } login page: if(empty($_POST) === false) { $username = $_POST['username']; $password = $_POST['password']; if(empty($username) === true || empty($password) === true) { $errors[] = 'Please enter a username and password.'; } else if(user_exists($username) === false) { $errors[] = 'We can\'t find that username. Have you <a href="register.php">register</a>ed?'; } else if(user_active($username) === false) { $errors[] = 'You have not activated your account. Check your Email!'; } else { $login = login($username, $password); if($login === false) { $errors[] = 'That username/password combination is incorrect.'; } else { echo 'You are now logged in. Please wait for the page to refresh or click <a href="home.php">here</a>.'; $_SESSION['id'] = $login; echo '<meta http-equiv="refresh" content="0;url=home.php">'; exit(); } } print_r($errors); } ?> Error: Fatal error: Call user_exists() in /home/a1922355/public_html/login.php on line 13
  5. @Jessica, the website is supposed to have the container right next to the leftbar, side by side, instead of the container moving further down the page.
  6. So, there's the code. have any idea how to fix it?
  7. I just read your subtitle. Now I know that you have mental problems. .container { height:700px; width: 700px; border:1px solid #fff; border-radius:0px 5px 5px 0px; margin: 0 auto; background-color:#FFF } .leftbar { height:700px; width: 200px; border:1px solid #fff; border-radius:5px 0px 0px 5px; float: left; background-color:#FFF }
  8. Doesn't work.
  9. No, I haven't. Let me try...
  10. Hello everyone, On my website http://wizzletalk.comlu.com, I am trying to Align the leftbar to the left, but it keeps making my container go down. Is there a way to fix this? Thanks ahead!
  11. Okay. I'm fine with moving it
  12. Hello all... I am working on a website, but I have a comments system and my 'good' ole friend is using HTML redirects... So, I am trying to delete all code that shows up in comments. Basically what I want to do is have it so that <b> = [bLOCKED]. Here's my code: <meta http-equiv="Refresh" content="0;url=home.php" /> <?php include('includes/db_connect.php') $username = mysql_real_escape_string($username); $comment = mysql_real_escape_string($comment); mysql_query("INSERT INTO comments (username, comment) VALUES ('$_POST[username]','$_POST[comment]')"); ?> Thanks!
  13. Okay, here's my commentstream.php code: <?php ('includes/db_connect.php'); $result = mysql_query("SELECT * FROM comments ORDER BY id DESC LIMIT 10"); htmlspecialchars () while($row = mysql_fetch_array($result)) { echo "<div class='comment'><b><center>".$row['username'] . "</b></center><br><br><center><i>" . $row['comment']."</i></center><>"; echo "<br/>"; } ?> Error:Parse error: syntax error, unexpected T_WHILE in /home/a1922355/public_html/commentstream.php on line 5
  14. Hi everyone, If you know a way to block comments that have HTML in them, then please PM me. Someone just posted a comment that made the site redirect to goatse.ch... Please help!! P.S. I've already deleted the comment with HTML in it and I have disabled comments.
  15. Thanks jesirose! This is a big help!
  16. Well, go to my website: http://www.Wizzletalk.Comlu.Com As you can see I am trying to make a container for everything. I need that container to move over to the center. How will I do this?
  17. Is there a way to center borders? If there isn't, then do you have any alternatives? If there aren't I will be . Thanks ahead.
  18. @holly, DO NOT use what everyone else has been saying. Just use <center> and </center>
  19. Here's what you can use: <form action="mail.php" method="POST"> <p>Name</p> <input type="text" name="name"> <p>Email</p> <input type="text" name="email"> <p>Phone</p> <input type="text" name="phone"> <p>Request Phone Call:</p> Yes:<input type="checkbox" value="Yes" name="call"><br /> No:<input type="checkbox" value="No" name="call"><br /> <p>Website</p> <input type="text" name="website"> <p>Priority</p> <select name="priority" size="1"> <option value="Low">Low</option> <option value="Normal">Normal</option> <option value="High">High</option> <option value="Emergency">Emergency</option> </select> <br /> <p>Type</p> <select name="type" size="1"> <option value="update">Website Update</option> <option value="change">Information Change</option> <option value="addition">Information Addition</option> <option value="new">New Products</option> </select> <br /> <p>Message</p><textarea name="message" rows="6" cols="25"></textarea><br /> <input type="submit" value="Send"><input type="reset" value="Clear"> </form> And then the PHP... <?php $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $call = $_POST['call']; $website = $_POST['website']; $priority = $_POST['priority']; $type = $_POST['type']; $message = $_POST['message']; $formcontent=" From: $name \n Phone: $phone \n Call Back: $call \n Website: $website \n Priority: $priority \n Type: $type \n Message: $message"; $recipient = "[email protected]"; $subject = "Contact Form"; $mailheader = "From: $email \r\n"; mail($recipient, $subject, $formcontent, $mailheader) or die("Error!"); echo "Thank You!"; ?> You're welcome.
  20. There isn't an error. Stop treating people like crap. It makes me want to leave this site.
  21. I'm only nine and I code o.0
  22. Well, now I have a problem with my code that is echoing it. <?php include('includes/db_connect.php'); mysql_query('SELECT * FROM members'); echo ("".srow['username'[); ?> Error: Parse error: syntax error, unexpected '[' in /home/a1922355/public_html/dbtest.php on line 6
  23. No ma'm. There is only one user so far and that is me.
×
×
  • 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.