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.

~752 People Reached
Favorite Tags
Member Avatar for blood08

Hey I am trying to run this in php: [code]// Retrieve data from table where row that match this passkey $sql1="SELECT * FROM $tbl_name1 WHERE confirm_code ='$passkey'"; $result1=mysql_query($sql1) or die(mysql_error())[/code] and I get this error: [code]You have an error in your SQL syntax; check the manual that corresponds to your …

Member Avatar for saiprem
0
230
Member Avatar for blood08

How would you make PHP search a website for a certain word and then return a true or false? Is there a function built into php already?

Member Avatar for langsor
0
153
Member Avatar for blood08

I am trying to make my script install a config file with the right settings so the it can be used by anyone. Here is the file that will create the config file: [CODE=language] <?php $dbhost = $_POST["dbhost"]; $dbuser = $_POST["dbuser"]; $dbpass = $_POST["dbpass"]; $dbname = $_POST["dbname"]; $location = $_POST["location"]; …

Member Avatar for digital-ether
0
115
Member Avatar for blood08

So I had malware (Virtumonde to be exact) and so I ran combofix and it removed the malware. Now my problem is that when I login to windows Explorer.exe does not start automatically I have to go into task manager and run it from there. I was on another forum …

Member Avatar for willis100
0
83
Member Avatar for blood08

Hey I am following a video tutorial teaching pointers... I am following along and writing what they have. Which is: [CODE]#include <iostream> using namespace std; void main() { int myArray[4] = (1, 2, 3, 4); cout << (int)myArray << endl; cout << (int)&myArray[1] << endl; }[/CODE] They are able to …

Member Avatar for blood08
0
171