-
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
Says that the `$capacity` variable is undefined. Note that you cannot use parenthesis in PHP variable names. -
Began Watching My php file retrieve all data from datebase using PHP PDO?
HI I'm working with a php script and connecting via PDO to a database My php file retrieves all data from datebase when I selected one radio button for example … -
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
> Notice: Use of undefined constant programming I think you removed the wrong thing. I meant in your form. Did you remove `$value` from the constructor? -
Began Watching My php file retrieve all data from datebase using PHP PDO?
HI I'm working with a php script and connecting via PDO to a database My php file retrieves all data from datebase when I selected one radio button for example … -
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
> Notice: Array to string conversion in C:\xampp\htdocs\test\1Php.php on line 27 Oh, this may have to do with the fact you're using `programming[]`, didn't notice this earlier. I think you … -
Began Watching My php file retrieve all data from datebase using PHP PDO?
HI I'm working with a php script and connecting via PDO to a database My php file retrieves all data from datebase when I selected one radio button for example … -
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
Missing semi-colon. -
Began Watching Trigger for update_history
I have three table **customer** c_id NUMBER c_name VARCHAR2 c_address VARCHAR2 **order** o_id NUMBER fk_c_id NUMBER o_name VARCHAR2 o_price NUMBER o_orderDate DATE **order_history** oh_id fk_o_id fk_c_id oh_status VARCHAR2 oh_dateChanged DATE … -
Replied To a Post in Trigger for update_history
What do you want this trigger to do? You cannot use a trigger to update the same table. -
Began Watching My php file retrieve all data from datebase using PHP PDO?
HI I'm working with a php script and connecting via PDO to a database My php file retrieves all data from datebase when I selected one radio button for example … -
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
Ah. You need a `WHERE` clause in your query, so you limit your results. Something like this (may need some tweaking): $value = $_POST['programming']; $sql = "SELECT * FROM usb_flash_driver … -
Began Watching The caching of AJAX calls?
ello ello, I'm currently calling a file using JQuery but every so often (very randomly) Google Chrome would crash (Just the tab, not the browser). Soooo I began investigating and … -
Replied To a Post in The caching of AJAX calls?
Benefit? Ease of use, nothing else. -
Began Watching Trigger for update_history
I have three table **customer** c_id NUMBER c_name VARCHAR2 c_address VARCHAR2 **order** o_id NUMBER fk_c_id NUMBER o_name VARCHAR2 o_price NUMBER o_orderDate DATE **order_history** oh_id fk_o_id fk_c_id oh_status VARCHAR2 oh_dateChanged DATE … -
Replied To a Post in Trigger for update_history
What exactly is the question? -
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 … -
Replied To a Post in Fatal error
> Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in F:\xampp\htdocs\contact.php on line 91 That … -
Began Watching My php file retrieve all data from datebase using PHP PDO?
HI I'm working with a php script and connecting via PDO to a database My php file retrieves all data from datebase when I selected one radio button for example … -
Replied To a Post in My php file retrieve all data from datebase using PHP PDO?
What exactly is the problem? -
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 … -
Replied To a Post in Fatal error
`$mail()` should be `mail()` -
Began Watching the code of number balls game
Please if u can send me the code or any example of the code of this game because i have on project on my univesity on app inventor . the … -
Replied To a Post in the code of number balls game
I hardly think PHP is the way to go here. -
Began Watching preg_replace() Failing To Work
I am attempting to use preg_replace to purge everything except letters and numbers in the $_POST, however is seems to be failing to work. Sample code below demonstrating the problem. … -
Replied To a Post in preg_replace() Failing To Work
What does the following do? $x1 = preg_replace('/[^A-Za-z0-9]/', "", $_POST['name'] ); $x2 = preg_replace('/[^A-Za-z0-9]/', "", $_POST['age'] ); echo "Welcome " . $x1 . "<br />"; echo "You are " . … -
Began Watching how do i develop and run my own smtp
i want to know how to develop and run my own smtp server -
Replied To a Post in how do i develop and run my own smtp
You want to build one from scratch? -
Began Watching Can anyone help with a error ORA-01937 missing or invalid role name
Hi there I got a little problem with a small bit of code am unfamiliar with orcale database the scripts I have were done by a other person for version … -
Replied To a Post in Can anyone help with a error ORA-01937 missing or invalid role name
My Oracle knowledge is low, but from the error message it looks like `&1._role` is causing the issue. -
Began Watching Tooltipster Help Needed
I was reading through http://calebjacob.com/tooltipster to achive a cool tooltip, but seems not working for me :( any one please write me the code to achive this tooltip effect -> … -
Replied To a Post in Tooltipster Help Needed
Just view the source of [this page](http://calebjacob.com/tooltipster/#demos). -
Began Watching check if a record exists then if it does update table if it doesn't insert
so my newest problem! i have a save button and that save button already has the insert into query and working fine now what i wanna do is when the … -
Replied To a Post in check if a record exists then if it does update table if it doesn't insert
If the `while` loop is skipped because there are no records, then `$permission` does not have a value. -
Began Watching Template from database in Smarty
What is the easiest way to retrieve templates from database in Smarty? I've tried http://www.smarty.net/docs/en/resources.custom.tpl to make this work, but unsuccessfull. I can't figure out how to implement it right. … -
Replied To a Post in Template from database in Smarty
Can you explain the steps you took for this example? Perhaps you missed something. -
Began Watching Strange code formatting / indentation
When lloking through code snippets on PHP, I noticed that formatting/indentation is looking a little strange. Example: http://www.daniweb.com/web-development/php/code/430455/configurable-table-class  -
Replied To a Post in Strange code formatting / indentation
I don't see that on IE11, but I do on Opera. The editor shows a tab size of 4, but the output shows 8. -
Began Watching Problem to get HTML source using cURL
Hello, I am trying to get HTML source of my vendor website's URL using cURL but I am not getting correct result, the output is coming only Header Template and … -
Replied To a Post in Problem to get HTML source using cURL
It is possible that the rest is loaded dynamically, which is something cUrl cannot get. -
Began Watching Need Good Resources
I am new to web development, now i want to learn javascript for web development and plugins development, please tell me good sites for learn javascript, "GOOD SITE MEANS REAL … -
Replied To a Post in Need Good Resources
Have you tried CodeAcademy? -
Began Watching Version Control on Custom Wordpress Themes
I've started using Bitbucket recently for version control and I have to say I like it a lot. I've only been using it for HTML/CSS development. I would really like … -
Replied To a Post in Version Control on Custom Wordpress Themes
Is [this](https://confluence.atlassian.com/display/BITBUCKET/Publishing+a+Website+on+Bitbucket) what you are looking for? -
Began Watching The caching of AJAX calls?
ello ello, I'm currently calling a file using JQuery but every so often (very randomly) Google Chrome would crash (Just the tab, not the browser). Soooo I began investigating and … -
Replied To a Post in The caching of AJAX calls?
If instead of `load` you use `ajax` then you can specify `cache:false` and a number will be added automatically.
The End.