Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~999 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

8 Posted Topics

Member Avatar for Fost

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 …

Member Avatar for buddylee17
0
148
Member Avatar for Fost

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 …

Member Avatar for Fost
0
220
Member Avatar for denxioz
Re: HELP

yea theres actually one here lol. [url]http://www.daniweb.com/tutorials/tutorial173026.html[/url] Good luck!

Member Avatar for ShawnCplus
0
90
Member Avatar for Solliweb

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 …

Member Avatar for Member #120589
0
75
Member Avatar for Morrac

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, …

Member Avatar for Fost
0
114
Member Avatar for kained

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

Member Avatar for buddylee17
0
142
Member Avatar for 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 …

Member Avatar for tesuji
0
104
Member Avatar for Fost

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 …

Member Avatar for digital-ether
0
106

The End.