No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Hi All, I'm having a bit of an issue with a stored procedure I have written which encrypts a value using ENCRYPTBYPASSPHRASE and DECRYPTBYPASSPHRASE. The problem is these functions return Varbinary data types which I need to append to a Varchar data type. Can anyone help with being able to …
Hi Guys and girls, I'm doing some work with XML documents and one is stored behind a .htpasswd arrangement. I have a script which requests the xml docs using XMLReader. So the problem is the secure xml file, does anyone know of a way to access the file without going …
yea theres actually one here lol. [url]http://www.daniweb.com/tutorials/tutorial173026.html[/url] Good luck!
you usually get that problem when $result isnt what the mysql_fetch_assoc() function expects. This usually means that somethin has gone wrong earlier. if you change this: [code] $result = mysql_query($SQL); [/code] to this: [code] $result = mysql_query($SQL) or die(mysql_error()); [/code] your page should output a more useful error to help …
Your trying to echo the name but you havnt declared $name here: [code] echo $name . "'s Schedule"; [/code] you could change it to [code] echo $q . "'s Schedule"; [/code] or put [icode] $name = $q; [/icode] somewhere before you try and echo the name. As for the table, …
hey dave, if you try telling your div#content in ur css to float left and lose the 200px left padding (maybe try 20 or so), that should work. Fost
Hi guys, Im working on a bit of MySQL and was wondering if there is a way (without using php arrays or other) to search a table for a value (say 1) and return the rows which '1' wasnt found in. != wont work because the table contains more than …
Hey people, Cheers for checkin this, its a pretty simple concept but theres a bug which is annoying me, any feedback is appreciated. Ive got a script which is used to assign username and password form inputs default values of "Username (E-mail)" and "Password" The problem is, the script changes …
The End.
Fost