Search results

  1. G

    In a really depressed mood and i cant stop crying any jokes or funny videos pleasE?

    >.< sorry..? if you have links or somthing i need to get my mind off of it >.< i msorry i sound emo and stuff but im trying tnot to be sad
  2. G

    PHP subtract form mySQL?

    I have a mySQL database with points.. And you can spend them. How can you subtract a value form mySQL? <?php session_start(); // Include database information and connectivity include 'login/db.php'; // We store all our functions in one file include 'login/functions.php'; $a =...
  3. G

    What is wrong with this PHP if statement?

    <?php if($POST_["to2"] != "") { $to = $_POST["to"] . ', '; $to .= $_POST["to2"]; } else { $to = $_POST["to"]; } $subject = $_POST["subject"]; $message = $_POST["message"]; $from = $_POST["from"]; $name = $_POST["name"]; $headers = 'From: ' . $name . ' <' . $from . ' >' . "\r\n"; $headers .=...
Back
Top