No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
you fix the error.. depending on the kind of error you might try to catch it..
as commented above you really shouldn't save it to a cookie if your going for safety use sessions!
Did you think of Zend_Form? [url]http://framework.zend.com/manual/en/zend.form.html[/url]
Hi all, As a learning project I'm rewriting a spider i have in php to c++. One part of the spider is a multi-threaded downloader, all this downloader does is read urls from a text file download the page and save it. I would like the downloader to strip out …
Hi, i have a program that runs a loop during that loop if the user types lets say "status" i want a status report if the user didn't give any input no status report should be displayed i played around with getline getchar etc but those wait for user input …
its kinda obvious since the error tells you whats wrong: Column 'user_id' cannot be null. does the 9th line give any output?
i think you should look here: [url]http://www.php.net/manual[/url] more specific to the stuff you said you dont understand: [url]http://www.php.net/manual/en/reserved.variables.php[/url] [url]http://php.net/manual/en/control-structures.if.php[/url] [url]http://www.php.net/manual/en/language.operators.php[/url]
First of all im new here so Hi all.. im also new to c/c++ have been a java php and actionscript developer for some time now and finally have time to learn something new so im gonna go for c++ im just tryna get familiar with everything but i ran …
instead of:[code]$sql="DELETE FROM student_course WHERE course_code='$coursecode' [COLOR="Red"],[/COLOR] id_no='$id'"[/code] try:[code]$sql="DELETE FROM student_course WHERE course_code='$coursecode' [COLOR="Green"]AND[/COLOR] id_no='$id'"[/code]
[CODE]$cart .= ','.$_GET['id'];[/CODE] This does not add a new value to a array.. It appends a comma and the value of a url parameter to a string. Since your using a string unset() is not going to work. gr, Yrm
My name is Yoram, nick is easy: YRM.. Originally im a allround web developer but last couple of years only making ria's with flex flash php and sometimes some java. I'm a big fan of AS3.0 but DONT like flex, like php but LOVE the zend framework HATE HTML and …
The End.
MrYrm