Forum: PHP May 25th, 2005 |
| Replies: 1 Views: 1,432 I have built a page that calls two seperate forms (includes). Each form works fine independantly.. But. If both are called together, the first form works fine, but the second doesn't. It seems that... |
Forum: PHP May 25th, 2005 |
| Replies: 5 Views: 7,074 And finally the "enrich.php" script. This page is very simple and only for my testing... it will change.
<?
if (empty($EnrichName)){
echo "
<table>
<tr>
... |
Forum: PHP May 25th, 2005 |
| Replies: 5 Views: 7,074 Here is the "email.php" page.
<?
$HelpdeskEmail = "emailaddy@company.com";
$ip = $_SERVER['REMOTE_ADDR']; //Get IP Address
$CurrentDate=date("l dS of F Y h:i:s A"); //Set Current Date (Friday... |
Forum: PHP May 25th, 2005 |
| Replies: 5 Views: 7,074 There are actually 3 pages in my script.
I have tried naming the forms and that didn't seem to work. Here is the first page of code..
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>... |
Forum: PHP May 25th, 2005 |
| Replies: 10 Views: 2,840 I agree.. If it's free... it's for me.... Having someone else pay for you to learn is the only way to go. I am being paid to learn php and mysql.. It is challenging but worth the effort... |
Forum: PHP May 24th, 2005 |
| Replies: 0 Views: 1,617 I bought a book called PHP/MySQL Programming for the absolute beginner by Andy Harris, Premier Press. This book is great for a beginner. It walks you through a refresher on HTML and then goes step by... |
Forum: PHP May 24th, 2005 |
| Replies: 10 Views: 2,840 www.phpide.com/go/downloads.htm that should be it.. if you get the book I suggested, it comes with it on the CD. |
Forum: PHP May 24th, 2005 |
| Replies: 10 Views: 2,840 I just started learning a few months ago and am already building some pretty advanced pages... Don't worry.. it is easier than you think... If I may recommend a book... PHP/MySQL Programming for the... |
Forum: PHP May 24th, 2005 |
| Replies: 10 Views: 2,840 Don't know about those apps, but PHP Coder Pro is a good tool... I use it for all my php development. The software is free. You will have to learn php to build your site, there are no apps that will... |
Forum: PHP May 24th, 2005 |
| Replies: 5 Views: 2,156 I use PHP Coder Pro.... Nice utility with some built in functionality... Best of all... it is FREE!
www.phpide.com/go/downloads.htm |
Forum: PHP May 24th, 2005 |
| Replies: 5 Views: 7,074 I am trying to build a page that allows the user to select multiple tasks. Each task has a form attached to it. I am using the include in my logic to determine which forms are needed. That all works... |