No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
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 in outlook are set to plain text, but my code seems …
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 distiller the default printer. This way forces me to …
Hi Crest, I am by no means an expert at php. I have developed my own website using php. I used the tutorials at [url]www.webmonkey.com[/url] and recieved help through this forum. The tutorials are in plain english, and They are very easy to follow. I knew absolutely nothing about php …
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 up in a new window so my customer can see both my site …
[url]www.webmonkey.com[/url] has some good tutorials on php and mysql. I used them when starting out. They are very easy to follow
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 can track it on line. I have the carrier's website listed in the database. how …
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 with setting a default value for the date field? Thanks in Advance! Stick
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 when they log in. <?php $db = mysql_connect("","",""); mysql_select_db("",$db); $today= getdate(); …
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 it that way using the printf function at the …
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 I want to be able to click on any given order and see the …
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 = mysql_fetch_array($results)) { do { [COLOR=DarkOrange]I WANT THIS TO GO TO "details.php"[/COLOR]} while ($myrow = mysql_fetch_array($results)); } else { echo "Sorry, Incorrect Username or Password!"; } I'm …
Can anyone help me with the script to show records on a database based on the input of a text field on a form?
The End.
Stick