• Member Avatar for pzuurveen
    pzuurveen

    Began Watching Make text appear at any location on viewable area?

    How can I display a string at any x and y coordinated position of a webpage? Using only JavaScript, unless I have to have the text already included in the …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in Make text appear at any location on viewable area?

    first create te code in html to make sure you get what you want. Then create that html-code using javascript with [document.createElement](http://www.w3schools.com/jsref/met_document_createelement.asp)
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching Arrangement Highest to lowest

    anyone have a php code for arranging the inputed value of A B C D, from highest to lowest using if,elseif statement, ty :D
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in Arrangement Highest to lowest

    [array sorting](http://www.php.net/manual/en/array.sorting.php)
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching PHP MYSQLI count dont display the same thing over again

    Hi I'm creating a website that uses a count query, to see how many things in the database match a variable. Table eg: Whats Liked User Liked By potatoes djiajgi …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in PHP MYSQLI count dont display the same thing over again

    maybe a subquery see [Click Here](http://dev.mysql.com/doc/refman/5.0/en/from-clause-subqueries.html) SELECT user_liked_by FROM ( SELECT COUNT(user_liked_by) AS total, id, user_liked_by FROM whatilike WHERE whats_liked LIKE '%$thing_liked%' && user_liked_by !='$user' ORDER BY COUNT(user_liked_by) DESC ) …
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching Don't working same class in differrent if-else block

    ` if(something here) { <img src="a.jpg" class="image" /> } else if(somthing here) { <img src="b.jpg" class="image" /> } I have something like it But class and events associated with it …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in Don't working same class in differrent if-else block

    > I have something like it The devil is in the details. Don't see any thing here that is either a class or require jquery. Post your exact code.
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching problem with unrepeated email :(

    Hi I'm working on a registration system and I've faced a problem with checking if the email is already inthedatabase this is my checking code $sql = "SELECT * FROM …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in problem with unrepeated email :(

    line 5 if($email == $row1['email']) and what are you trying to do on line 4?
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching $this

    dear all, i have a code in php class. through that code plz help me to solve my problem. in the below code why we use $this->message .. can't we …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in $this

    [http://www.daniweb.com/web-development/php/threads/469605/this](http://www.daniweb.com/web-development/php/threads/469605/this)
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching If ifelse problem

    Sir, i am using these codes <?php $myusername=""; $mypassword=""; $myemail=""; $mymobile=""; $mycountry=""; $mycity=""; $myage=""; $mygender=""; $myphoto=""; if(isset($_POST['save'])){ require_once("connect.php"); function clean($str){ $cstr=trim($str); $cstr=addslashes($str); $cstr=htmlspecialchars($str); return $cstr; } $myusername=clean($_POST['username']); $mypassword=clean($_POST['password']); $myemail=clean($_POST['email']); $mymobile=clean($_POST['mobile']); …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in If ifelse problem

    line 40 use $myemail insted of $email: elseif (empty($myemail))
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching Getting Error In PHP Script.

    Hello All, I am getting error "*You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in Getting Error In PHP Script.

    also check out [mysql_real_escape_string ](http://php.net/manual/en/function.mysql-real-escape-string.php) (will not solf your problem but prevent hacking)
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching Fatal error

    Fatal error: Call to undefined function dean-ueki@hotmail.com() in F:\xampp\htdocs\contact.php on line 87 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!-- --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="keywords" content="" /> <meta …
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in Fatal error

    you post the wrong file post F:\xampp\htdocs\s.php
  • Member Avatar for pzuurveen
    pzuurveen

    Began Watching trying to get feedback to email from a form

    i am using hpage to create my site and i want to creat a form of my own to send feedback to email
  • Member Avatar for pzuurveen
    pzuurveen

    Replied To a Post in trying to get feedback to email from a form

    I checked out hpage. You can't upload php-files. But they do have a default contact-form that sends email.

The End.