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.

~7K People Reached
About Me

I graduated the Pennsylvania State University with a BA in Marketing and received Computer Science certificates from the University of Scranton. I just created my first data base driven web site and now learning internet marketing tools. Currently I…

Interests
Marketing, gym, jogging,
Member Avatar for phpDave

Hi, I trying to learn how to build a meta search engine. I found lots of info about them but not much on coding. I trying to use php for this. Does anyone know any good tutorials or books for this. Examples of code would be awesome! Thanks.

Member Avatar for phpDave
0
109
Member Avatar for phpDave

Hello, I trying to learn how to create a forgot password page. I used some code from another forum and having some trouble with it. I get an error for the $recs and $row variables. Any feedback on this topic would be appreciated. Thank you. <?php require_once('Connections/connadmin.php'); ?> <?php session_start(); …

Member Avatar for srilatha12
0
215
Member Avatar for phpDave

Hi, I'm trying to update multiple rows with diferent values. The amont of values depends on the number of people created by the user. I created some code that works for only single row. Can anyone help? I'm not sure how to do this. <?php if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == …

Member Avatar for masterjiraya
0
284
Member Avatar for phpDave

Hi, I’m trying to insert multiple text fields into MySQL database. Each text field has a unique index key under a single user id. The number of indexes will depend on the user. Is this possible? I never had to do this before and I was wondering if anyone could …

Member Avatar for phpDave
0
131
Member Avatar for phpDave

Hi, I trying to user 3 AND operators in one Select Statement. It's not working. Is this even posable. If not, any suggestions? Here is the code: $query_Recordset1 = "SELECT * FROM user JOIN message WHERE message.user2 = '$user2' AND message.user_id = '$user2' AND email = '$email'"; Thanks!

Member Avatar for pritaeas
0
84
Member Avatar for phpDave

Hi, I hope I'm in right place for this question. Recently I submitted an App Idea to MEDL Mobile. My question is, how long does it usually take to get reviewed? Weeks? Months? Years? Thanks!

0
47
Member Avatar for phpDave

Hello, Anyone know how to get a session var. from a while loop. Here is some code: [CODE]<form id="form1" name="form1" method="post" action=""> <p>Age: <select name="age" id="age"> <option value="0">Select Age</option> <?php $i=1; while($i<=100) { echo '<option value="1">'.$i.'</option>'; $i++; } ?>[/CODE] It's from a drop down menu. Here is the code for …

Member Avatar for phpDave
0
180
Member Avatar for phpDave

Hi, I'm looking to build a payment button using Amazon Simple Marketplace Payments. Here is some code: [CODE]<input type="hidden" name="recipientEmail" value="email_address yahoo.com" >[/CODE] I would like value to be a variable but having trouble making this happen or finding info on how to do this. Any help would be awesome.

Member Avatar for phpDave
0
110
Member Avatar for phpDave

Hi. I use DW cs4 for pagination in order to let users page through a record set. It always worked until I use a $variable in a SELECT statement. If I hard code something, it works, variables don't. Any solutions to this?

Member Avatar for phpDave
0
121
Member Avatar for phpDave

Hello. I'm trying to use a wildcard for a $var. in a SELECT statement. Can't seem to get it to work. '$search_Recordset2' is the $var. [CODE]("SELECT * FROM table WHERE col1 LIKE '$search_Recordset2' OR col2 LIKE '$search_Recordset2' OR col3 LIKE '$search_Recordset2'"[/CODE] If I use '%$search_Recordset2%' or %'$search_Recordset2'% I get error.

Member Avatar for phpDave
0
153
Member Avatar for cossay

Is dreamweaver for professional developers or people who have very little knowledge of programming?

Member Avatar for digital-ether
0
112
Member Avatar for phpDave

Hi, currently I am working on embedding a flash video box into my dreamweaver site. All I would like is an empty video box so users can upload their own video. Any thoughts? Thanks.

0
52
Member Avatar for phpDave

Hi! Anyone know of a good tutorial for allowing users to "upload video files". I am familiar with uploading scripts for images but never worked with videos.

Member Avatar for diafol
0
59
Member Avatar for phpDave

Hello, I wrote a script to send out an email and it works except for the subject line. Not sure why. Anyone know? Is it the "" marks? [CODE] $to = ($_POST['e_mail']); if (!isset($_POST['e_mail'])) $subject = "Registration at MySite.com"; $message = "Welcome to MySite! Your user account has been created. …

Member Avatar for phpDave
0
90
Member Avatar for phpDave

Hi. I am trying to allow users to upload images to site. It works on testing server but having trouble on remote server. GoDaddy. Here is the upload dir for testing server: [CODE]define('UPLOAD_DIR','C:/xampp/htdocs/MyStuff/images/');[/CODE] Not sure for remote server.

Member Avatar for phpDave
0
227
Member Avatar for phpDave

Hey, header is working just fine in f.f but not in i.e. I.E. seems to clear the Query String up to index and redirect me to the index page. If I cancel out the header func. page seems to work . Here is some of the code. [CODE]if ($Result1) { …

Member Avatar for phpDave
0
112
Member Avatar for phpDave

Hello, I'm building a site that allows users to post comments like facebook. After say, 10 rows ( or 10 INSERT INTO's )I want the 1st row to be deleted as to control space in the data base. Any key words or links would help. Thanks

Member Avatar for phpDave
0
74
Member Avatar for phpDave

Hi, I'm working on a site that allows users to connect with each other. User can search, find friend, and then request a connection. It works but if user request a second time it duplicates the row in table. I only want INSERT if does not exists. Here is code. …

Member Avatar for phpDave
0
93
Member Avatar for phpDave

Hi, I've been trying to SELECT from 3 tables but not sure how. Here is the code for selecting from 2 tables [CODE]$query_Recordset3 = sprintf("SELECT * FROM mystuff.users JOIN mystuff.contact USING(user_id) WHERE contact.rec_id = '$id'", GetSQLValueString($colname_Recordset3, "text")); $Recordset3 = mysql_query($query_Recordset3, $connAdmin) or die(mysql_error()); $row_Recordset3 = mysql_fetch_assoc($Recordset3); $totalRows_Recordset3 = mysql_num_rows($Recordset3);[/CODE] Any …

Member Avatar for diafol
0
102
Member Avatar for phpDave

Hi, I'm building a site where users can connect with each other. I'm trying to let users post comments like one would on Twitter or Facebook. Currently, I have it so the user has to update there comments but I would rather them post new ones. Basically, how is this …

Member Avatar for phpDave
0
91
Member Avatar for phpDave

Hi, I'm looking to build a video sharing site and would like to ask what I need to get started with. I read about adobe flash server, but do I need this to build it or can I just user a hosting company that hosts sites like this. This is …

Member Avatar for chrishea
0
79
Member Avatar for phpDave

Hi, I'm trying to select from 3 tables but I can't seem to get it right. Here is the code: [CODE]$query_Recordset1 = sprintf("SELECT * , image.user_id, image.name, page.user_id, page.urlcode FROM users JOIN mystuff.page JOIN mystuff.image ON page.user_id = image.user_id = users.user_id WHERE users.last_name = %s AND users.first_name = %s", GetSQLValueString($colname_Recordset1, …

Member Avatar for jalicia18
0
107
Member Avatar for phpDave

Hi, I'm trying to display an image inside a php tag using a file path name I stored in mysql. So far not working. [CODE]<td><?php echo "<img src='images/$image'/>";?></td>[/CODE] $image is the path to mysql. I can echo the path name so I know it works there but I can't display …

Member Avatar for phpDave
0
109
Member Avatar for phpDave

Hi, I am trying to insert an image path name into mysql. I not sure how to insert the path only if the path name "image name" does not exist. Also, I get duplicate rows when uploading image path name, not sure why. Here is some code. Any suggestions would …

Member Avatar for phpDave
0
164
Member Avatar for phpDave

Hello, for a while now I have been studying file uploads. I have 2 scripts, 1 creates a folder for a user and store the image in it. The other resizes the image and stores it inside another folder. What I would like to do is combine both scripts in …

Member Avatar for phpDave
0
141
Member Avatar for phpDave

Hi, My script works but not the way I would like it to. [CODE]$file = $_FILES['content']['tmp_name']; if (!isset($file)) echo "please select an image."; else { $content = addslashes (file_get_contents ($_FILES['content']['tmp_name'])); $content_name = addslashes ($_FILES['content']['name']); $content_size = getimagesize ($_FILES['content'] ['tmp_name']); $user = $row_Recordset1['user_id']; if (!$content_size) echo "Thats not an image"; else …

Member Avatar for kkjay
0
116
Member Avatar for phpDave

Hi, I am trying to display multiple images on a search page. If name comes up in search so does image under same user id. It works only for one image for all names same. Example: Facebook, same name found in search but different images. I'm thinking a do while …

Member Avatar for phpDave
0
119
Member Avatar for phpDave

Hi, Does anybody know of another way to display an image from mysql besides [CODE]header("Content-type: image/jpg");[/CODE]

Member Avatar for Shanti C
0
29
Member Avatar for phpDave

Still stuck on images with php. I want users who are logged in to see the images they uploaded. I got scripts working but the get image file is not bringing image according to specific user. The problem seem to be in the query. I always get the first image …

Member Avatar for phpDave
0
77
Member Avatar for phpDave

Hi, I'm trying to write a script that allows me to insert a file into MySql. I would like it to work under the user's session. I am getting error:(You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right …

Member Avatar for lyrico
0
111