-
Replied To a Post in [Suggestion] Make the user info also as a static header
Opera/IE too, on Win7/Win8. -
Stopped Watching php results sorting problem
Hi I"m sorry that there is no code, it's just a question in my mind .. How can I sort the request results as rows.In every row 4 results then … -
Began Watching php results sorting problem
Hi I"m sorry that there is no code, it's just a question in my mind .. How can I sort the request results as rows.In every row 4 results then … -
Replied To a Post in php results sorting problem
Something like [this](http://www.daniweb.com/web-development/php/code/425686/create-a-table-x-columns-wide)? -
Stopped Watching Why in the insert a MySQL statement in a PHP program must have a dot
While learning php I found this common statement $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('".$master_id."', now(), now(), '".$safe_tel_number."', '".$_POST['tel_type']."')"; What I do not understand why … -
Began Watching Why in the insert a MySQL statement in a PHP program must have a dot
While learning php I found this common statement $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('".$master_id."', now(), now(), '".$safe_tel_number."', '".$_POST['tel_type']."')"; What I do not understand why … -
Replied To a Post in Why in the insert a MySQL statement in a PHP program must have a dot
> why the author in second approach used the concatenation It's a choice. If you want to do it right, use MySQLi or PDO with binding. -
Stopped Watching Using mysqli prepared statements on schema queries
While extending a mysqli class, I ran into an issue with binding parameters. I've read that db names and table names should not be used as parameters, but while I … -
Began Watching Using mysqli prepared statements on schema queries
While extending a mysqli class, I ran into an issue with binding parameters. I've read that db names and table names should not be used as parameters, but while I … -
Replied To a Post in Using mysqli prepared statements on schema queries
Interesting. Do you have this with PDO too? A shame I can't test this here. Have to wait till I get home. Do you get an error, or just no … -
Edited free accessible web hosting
hi. well got my dipploma from http://wsi.tafensw.edu.au, and the site is at : http://marvinhunkin.bmtafeweb.com. now. need a accessible, screen reader, free version of a web host or free domain, with … -
Stopped Watching Why in the insert a MySQL statement in a PHP program must have a dot
While learning php I found this common statement $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('".$master_id."', now(), now(), '".$safe_tel_number."', '".$_POST['tel_type']."')"; What I do not understand why … -
Began Watching Why in the insert a MySQL statement in a PHP program must have a dot
While learning php I found this common statement $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('".$master_id."', now(), now(), '".$safe_tel_number."', '".$_POST['tel_type']."')"; What I do not understand why … -
Replied To a Post in Why in the insert a MySQL statement in a PHP program must have a dot
The dot is concatenating strings. Another way to write this is: $add_tel_sql = "INSERT INTO telephone (master_id, date_added, date_modified, tel_number, type) VALUES ('$master_id', now(), now(), '$safe_tel_number', '{$_POST['tel_type']}')"; -
Stopped Watching multiple users login and give his different permissions
<?php session_start(); ob_start(); include 'database_connection.php'; if (isset($_POST['formsubmitted']) && $_POST['formsubmitted'] == TRUE) $error = array();//this aaray will store all error messages if (isset($_POST['email']) && empty($_POST['email'])) //if the email supplied is empty … -
Began Watching multiple users login and give his different permissions
<?php session_start(); ob_start(); include 'database_connection.php'; if (isset($_POST['formsubmitted']) && $_POST['formsubmitted'] == TRUE) $error = array();//this aaray will store all error messages if (isset($_POST['email']) && empty($_POST['email'])) //if the email supplied is empty … -
Replied To a Post in multiple users login and give his different permissions
What's your question? -
Stopped Watching [Suggestion] Make the user info also as a static header
I kinda like the idea behind the static/fixed header, but I was wondering if there's any chance to actually extend it, and add the user information to it, like this: … -
Began Watching [Suggestion] Make the user info also as a static header
I kinda like the idea behind the static/fixed header, but I was wondering if there's any chance to actually extend it, and add the user information to it, like this: … -
Replied To a Post in [Suggestion] Make the user info also as a static header
Am not sure where I saw this, but on one site I saw the header height smaller when scrolling down (smaller font). Kinda liked the idea. I'll see if I … -
Edited Asterisk Triangle
Someone help me creating a this program. Well, I need a program that makes a triangle out of asterisk but it doesnt use "for" loop it only requires "do-while" loop. … -
Stopped Watching SOAP Webservice question
Hi All, I need to create a couple of webservices, where I retrieve info from the database. Found this example on php.net while searching for examples: class MyClass { public … -
Began Watching SOAP Webservice question
Hi All, I need to create a couple of webservices, where I retrieve info from the database. Found this example on php.net while searching for examples: class MyClass { public … -
Replied To a Post in SOAP Webservice question
> And am wondering if oit is that simple..? It should be, but it's been a while since I've used SOAPServer with PHP. > Dont I need to create a … -
Stopped Watching html form w/ drpdown selector that sends file to any db and table choosen.
..im new in PHP and and I want to know how to create html form that sends file(images) to phpmyadmin(database) consider that you have to choose the database first from … -
Began Watching html form w/ drpdown selector that sends file to any db and table choosen.
..im new in PHP and and I want to know how to create html form that sends file(images) to phpmyadmin(database) consider that you have to choose the database first from … -
Replied To a Post in html form w/ drpdown selector that sends file to any db and table choosen.
> please help What exactly do you need help with? What do you have so far? -
Edited select one single row
<?php include 'connectMySql.php'; if(! $conn ) { die('Could not connect: ' . mysql_error()); } $sql = 'SELECT * FROM users '; $result = mysql_query( $sql); if(! $result) { die('Could not … -
Stopped Watching Store Posts in Database
I am creating a site and I am trying to put all the posts within a mysql database (phpmyadmin). How do i put articles/posts in the DB? -
Began Watching Store Posts in Database
I am creating a site and I am trying to put all the posts within a mysql database (phpmyadmin). How do i put articles/posts in the DB? -
Replied To a Post in Store Posts in Database
Use a `TEXT` column. -
Stopped Watching what is wrong in this code the data is not iserted to table
<?php include_once('includes/configuration.php'); if(isset($_POST['add'])) { if($_POST['student_id'] == "") { $message = 'Please Enter Srudent ID'; } else { $student_id = $_REQUEST['student_id']; $date = $_REQUEST['date']; $free_indoor_play = $_REQUEST['free_indoor_play']; $rhymes_session = $_REQUEST['rhymes_session']; $language … -
Began Watching what is wrong in this code the data is not iserted to table
<?php include_once('includes/configuration.php'); if(isset($_POST['add'])) { if($_POST['student_id'] == "") { $message = 'Please Enter Srudent ID'; } else { $student_id = $_REQUEST['student_id']; $date = $_REQUEST['date']; $free_indoor_play = $_REQUEST['free_indoor_play']; $rhymes_session = $_REQUEST['rhymes_session']; $language … -
Replied To a Post in what is wrong in this code the data is not iserted to table
Do: mysql_query($query) or die(mysql_error()); and find out why. -
Edited Facebook javascript error
Every page of DaniWeb has a Javascript error that says: Uncaught SecurityError: Blocked a frame with origin "http://www.daniweb.com" from accessing a frame with origin "https://www.facebook.com". The frame requesting access has … -
Edited Drawing a right triangle
can someone give me an example that draws right triangle using asterisk using do-while loop only (without using for loop) -
Stopped Watching Search
Hallo, I am trying to make this search box works. This is my code: navigation.php <? //This is only displayed if they have submitted the form if ($searching =="yes") { … -
Began Watching Search
Hallo, I am trying to make this search box works. This is my code: navigation.php <? //This is only displayed if they have submitted the form if ($searching =="yes") { … -
Replied To a Post in Search
> Try using foreach on mysql_fetch_array(); He's trying PDO. -
Stopped Watching PLEASE HELP UPDATE STATEMENT
Hi,i have some error for some help when i try to run this code below i got this error "Syntax error in UPDATE statement." at .ExecuteNonQuery() and i try to … -
Began Watching PLEASE HELP UPDATE STATEMENT
Hi,i have some error for some help when i try to run this code below i got this error "Syntax error in UPDATE statement." at .ExecuteNonQuery() and i try to … -
Replied To a Post in PLEASE HELP UPDATE STATEMENT
Output the contents of `sqledit` and paste it here. It will be helpful if you post your table structure too. -
Stopped Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Began Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Replied To a Post in API CV Data Error
> Organisation en-US ... -
Stopped Watching how to resolve this kind of error in jsp?
ClassNotFoundException:com.mysql.jdbc.Driver -
Edited how to resolve this kind of error in jsp?
ClassNotFoundException:com.mysql.jdbc.Driver -
Began Watching how to resolve this kind of error in jsp?
ClassNotFoundException:com.mysql.jdbc.Driver -
Replied To a Post in how to resolve this kind of error in jsp?
Closed. Please DO NOT repost identical questions. Continued here: http://www.daniweb.com/web-development/jsp/threads/471657/the-error-line-was-classnotfoundexceptioncom.mysql.jdbc.driver-in-jsp -
Stopped Watching CrystalReportViewer1 Error
Hi, Could anyone help me to solve this error that occurs im my asp.net project ? Thanks 
The End.