Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #2K
~2K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for coxdabd

One thing I noticed is that you have { on line 5 and } on line 8. I don't know if these are supposed to be part of a if statement or something but they should not be there alone. Are you sure that your query is returning anything? You …

Member Avatar for teedoff
0
94
Member Avatar for floatingDivs

You can do something like this User accesses [url]http://www.somewebsite.com/category/baseball[/url] .htaccess [CODE] RewriteEngine on RewriteRule ^ category/([^/.]*)/?([^/.]*)/?$ /displaycategory.php?category =$1 [L] [/code] Then on the displaycategory.php page do a simple get [code] $category = $_GET['category']; [/code] You could then use $category to lookup the information that you need to display. In my …

Member Avatar for kb0000
0
188
Member Avatar for itisnot_me

You are never getting the file name. To get the file name you need to use [CODE=php]$filename = $_FILES["Filedata"]["name"];[/CODE]

Member Avatar for itisnot_me
0
92
Member Avatar for rajesh4u2u
Member Avatar for showman13

Try this: [code] RewriteEngine On rewriteRule ^([a-zA-Z0-9_-]+)$ index.php?m=$1 [/code]

Member Avatar for showman13
0
179
Member Avatar for ryan311

I think your going to have to better explain what you are trying to do. You have IMAGE1.jpg and you want to make that JPGIMAGE1.jpg?

Member Avatar for ryan311
0
90
Member Avatar for Allison2009

Zencart does not have this feature by default and there is no such plugin for amazon listed.

Member Avatar for sops21
0
169
Member Avatar for Dartz654

Do you have access to cron on the server? With cron you can schedule it execute a file every 12hrs. That file can run the mysql query that you want.

Member Avatar for terabyte
0
86
Member Avatar for znz

[CODE][/CODE]If you want to keep the same method that you are using for adding a record, you can do something like this: [CODE=php] echo "<tr><td>" . $row['id'] . "</td><td>" . $row['authorname'] . "</td><td>" . $row['publishyear'] . "</td><td>" . $row['booktitle'] . "</td><td>" . $row['edition'] . "</td><td>" . $row['place'] . "</td><td>" . …

Member Avatar for sops21
0
219
Member Avatar for nocode
Member Avatar for iamfrank

Does is have to by using PHP? Depending on the webhost you might be able to setup a cron job to do that backup... Create a file called backup [CODE] #!/bin/sh mysqldump -uusername -ppassword --opt tablename > /path/tofile/location/youwant/mysqldumpfile.sql [/CODE] And then schedule cron to run and execute the script [CODE]0 …

Member Avatar for guyinpv
0
138
Member Avatar for arctushar

I've used this before. $id is the the value of the primary key of the row that you just inserted. [CODE=php]$link = mysql_connect(DB_HOST, USER, PASSWORD) or die(mysql_error()); mysql_select_db(DATBASENAME) or die(mysql_error()); $query = "query here"; mysql_query($query) $id = mysql_insert_id($link); [/CODE]

Member Avatar for sops21
0
135
Member Avatar for benhowdle89

I would do it all in wordpress. You can create a page in wordpress and then set that page as the homepage. This way you don't have to create a home page(html, css) and then also create the theme for the blog.

Member Avatar for sops21
0
186
Member Avatar for sops21

I have a select box with information about people in it. When you click on their name in the select box, I'm trying to display information (Name, Address, Height, Weight) about them inside of a <div>. Here is what I have so far: [CODE]<form> <SELECT NAME="list1" MULTIPLE SIZE=20 class="set_width" id='developer'> …

Member Avatar for sops21
-1
157

The End.