Forum: HTML and CSS Jun 30th, 2009 |
| Replies: 5 Views: 625 With PHP you can write the PHP in an HTML file by using <?php ?>
tags.
so you would have in your index.html or whatever file
<html>
<body>
<?php
?> |
Forum: HTML and CSS Jun 29th, 2009 |
| Replies: 5 Views: 625 You are going to have to establish a connection from your MySQL database to your HTML form using a scripting language. Personally i recommend PHP but you can use ASP, ASP.Net...whatever is easiest... |
Forum: HTML and CSS Jun 27th, 2009 |
| Replies: 13 Views: 1,161 The html file and css file have to be in the same location...that is unless you have them in the same folder.
Example:
Html is in File -> Website
Then the CSS file has to be in the file... |
Forum: HTML and CSS Jun 18th, 2009 |
| Replies: 4 Views: 398 This is just some suggestions without looking at your code, ill look at it later when i have time.
Do you use firebug? If not i suggest you find it and download it, it will make your life so much... |
Forum: HTML and CSS Jun 18th, 2009 |
| Replies: 2 Views: 653 I would suggest looking into PHP, MySQL, XHTML, CSS for starters.
Most PHP & MySQL books have information and tutorials on making forums and message boards and then you can just go from there in... |
Forum: PHP Jun 18th, 2009 |
| Replies: 2 Views: 455 Thanks for taking a look at it for me, but it doesnt work. It will send the email but the attachment does not go with it. |
Forum: PHP Jun 17th, 2009 |
| Replies: 2 Views: 455 Ive got the email program itself working fine. It interacts with a database to get the "subscriber list" as the people it sends it too.
My problem now is i need to fix it to be able to send .pdf... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 That did it! you are my hero haha
I really do appreciate the help...means a lot
I will mark as solved |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Ok, here it is, i wasnt sure what quotes you were talking about putting in. Can you explain?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 lol yea i have uncommented it, still no luck. Thanks, i do appreciate the help |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 ok that seemed to work, but its still not deleting it from the database...thanks a lot for the help i appreciate it. The echo query shows that only one selected checkboxes email is shown at the end... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Here is the page when you first go to it
edited
the output from when you select and click remove is still empty |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 http://davidwimbley.com/mysql/emaillist/removeemail.php
There is the link to the page |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 the check boxes do come up and i am checking the box when i test the delete.
When i did the var dump statement from earlier, with no check boxes selected i got an output of NULL, with one box... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Here is the entire code from the delete email address page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Here is the output from your changes
array(1) { [0]=> string(0) "" } |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Hey i hate to do this to you but i did the echo $query; and it displayed my query but it still did not delete anything.
this is what it displayed
DELETE FROM email_list WHERE id = |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 That is the "new" code under the comment: // Delete the customer rows (only if the form has been submitted)
<?php
$dbc = mysqli_connect('65.175.112.230', 'dmwimbley0606', '6sknvn', 'example')... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Ive changed the SELECT back to DELETE and have entered the die(mysql_error()) and now no error pops up. But its not deleting the record, it is still fetching the records out of the database. |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Hey ive changed the delete to select just to see what it does if anything was done differently but let me edit the code and ill let you know. Thanks. |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 The error being desplayed is this one here, i edited the display error so i could narrow it down. The page displays this error "Error querying dHIHIHIHIHIHI."
I dont understand, if it can query... |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Thanks for the response but i actually have tried that and i still get a connection error. Any other thoughts? |
Forum: PHP Jun 15th, 2009 |
| Replies: 33 Views: 1,837 Hey guys/gals,
I literally just started teaching myself MySQL today and have started to write a email list script for mass emails.
Ive got the adding emails and sending mail scripts working but... |
Forum: HTML and CSS Jun 12th, 2009 |
| Replies: 13 Views: 1,161 If i were you i would check out some tutorials on Netuts. The way i learned was to look at full website tutorials like this one... |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 7 Views: 447 I looked at your code and what it looks like to me is that in the <div id="main2"> tag, the div right is too long inside the container div so it pushes div left to the bottom...if that makes sense?
... |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 7 Views: 447 There are already plenty of browser compatability problems between IE and Firefox so it could just be that your code isn't valid.
Are you using a code generator like dream weaver or expression... |
Forum: HTML and CSS Jun 1st, 2009 |
| Replies: 3 Views: 495 You are on the right path but you are going to need some other things to go along with it. It gets a little in depth but on your server you are going to need a database, it will hold the user's login... |