Forum: MS Access and FileMaker Pro Sep 21st, 2006 |
| Replies: 0 Views: 2,694 Hey All,
I have created the following code in my data base. It works correctly except that the email it creates is in the rich text format. I want it to be in plain text format. The default settings... |
Forum: MS Access and FileMaker Pro Sep 13th, 2006 |
| Replies: 0 Views: 3,301 Is there any way to use the sendobject command to send a report as a pdf attachment rather than an rtf attachment. I am able to use the print object command and get this to work if I make the acrobat... |
Forum: PHP Jan 5th, 2006 |
| Replies: 2 Views: 1,250 That worked great. Thanks |
Forum: PHP Jan 5th, 2006 |
| Replies: 7 Views: 2,016 Hi Crest,
I am by no means an expert at php. I have developed my own website using php.
I used the tutorials at www.webmonkey.com and recieved help through this forum.
The tutorials are in plain... |
Forum: PHP Jan 5th, 2006 |
| Replies: 2 Views: 1,250 I have a website that lists customer's jobs that have shipped.
When they click on the carrier's name it links to the carrier's website, but it uses the current window. Can I force the link to come... |
Forum: PHP Dec 15th, 2005 |
| Replies: 8 Views: 1,581 www.webmonkey.com has some good tutorials on php and mysql.
I used them when starting out. They are very easy to follow |
Forum: PHP Dec 15th, 2005 |
| Replies: 8 Views: 1,676 That gave me a result of http://www.mydomain.com/carriers name.
So I changed the script to
printf("<tr bgcolor=\"#EAE8E8\"><td>%s</td><td>%s</td><td><a... |
Forum: PHP Dec 14th, 2005 |
| Replies: 8 Views: 1,676 That almost worked.
Now it gives the path of http://www.mydomain.com/www.carriers domain.com
I want it to be http://www.carriers domain.com |
Forum: PHP Dec 14th, 2005 |
| Replies: 8 Views: 1,676 It gave me this error. "Warning: printf(): Too few arguments " |
Forum: PHP Dec 13th, 2005 |
| Replies: 8 Views: 1,676 Thanks Lafinboy,
The web address is located in the website field of the orders table, but I'm not sure how to build a standard href attibute around the carrier name.
Stick |
Forum: PHP Dec 12th, 2005 |
| Replies: 8 Views: 1,676 I have a database that returns information about a customer's jobs that have shipped. It displays correctly, but I would like the carrier name to be a link to the carrier's website so the customer... |
Forum: PHP Jun 23rd, 2005 |
| Replies: 2 Views: 4,256 Troy,
Thanks for your help. It worked great. I ended up getting rid of the date field all together, and sending the script_dt variable directly to the table. So now when someone logs in I can see... |
Forum: PHP Jun 21st, 2005 |
| Replies: 2 Views: 4,256 Hello All,
I have a form that I created for user login.
It has three fields.
username
Password
Date
I want the date field to default to the current date when users login.
Can anyone help me... |
Forum: PHP Apr 11th, 2005 |
| Replies: 3 Views: 5,511 Gary,
I updated my script as follows.
db = mysql_connect("","","");
mysql_select_db("",$db);
$today= getdate();
$today = serialize($today); |
Forum: PHP Apr 6th, 2005 |
| Replies: 3 Views: 5,511 I have a database that I would like to keep track of who and when people are logging on. I created a table called users. It has three fields, id, user, date. I created this script that is executed... |
Forum: PHP Mar 16th, 2005 |
| Replies: 1 Views: 23,616 I have a web page that prints a number from a mysql database.
Can anyone tell me how to show this number as a percent?
Does it need to be formated that way in the database table? or
Can I format... |
Forum: PHP Mar 4th, 2005 |
| Replies: 2 Views: 3,173 Thanks Holly,
The website was a big help!
They have great tutorials.
Stick |
Forum: PHP Mar 4th, 2005 |
| Replies: 2 Views: 2,648 Can anyone help me with an if statement?
My script looks like this.
$results= mysql_query("SELECT * FROM customers WHERE username='$user'and password='$pass'",$db);
if ($myrow =... |
Forum: PHP Feb 25th, 2005 |
| Replies: 2 Views: 3,173 Can anyone help me with the script to show records on a database based on the input of a text field on a form? |
Forum: PHP Feb 25th, 2005 |
| Replies: 2 Views: 1,711 I have a mysql database that has three tables. customers, orders, and order details. I want my customer to logon using a username and password that will show a list of his current orders. From there... |