Usually you would use the same server-side code you are using to generate the options via AJAX, to generate the lists on page load once the form has been submitted. You have all the values you need...
I've got to stop you there, wordpress is NOT a CMS, it's a blogging platform - don't use wordpress expecting it to do what a CMS will do because you'll end up starting all over again.
Depends completely on how often your site gets crawled by Google - the more your site is updated and the more content is contains then the more often Google will crawl, this could be anything from...
I'm looking at writing a simple app to track and manage link building requests - something that will fire an email off to the thrid party site and which you can report on which ones have replied and...
On another matter though, the table which stores the URL request paths could potentially build to many millions of rows - in time well over 5 million....
An interesting point came up recently when deciding on what the URLs should be on our ecommerce site - is a URL in the format http://www.example.com/some-keywords/name-of-product (where...
Hi Jarrod, thanks for the advice, that's exactly what I'll aim to do first. Can you offer any advice on how I create some 301 redirects on 1 million products though? Use the product code in the...
In my job I have been given a project to convert the existing web site to use url rewrites for the product pages. Currently the pages are in the format www.example.com/Name-of-Product/12345...
I see, so using jQuery as a Javascript example of a framework - you'd stil create your own classes etc but core functionality is helped along by the framework itself?
Some fair points guys, thanks, i havent as yet gone ahead with the project, as to do so would mean putting everything else aside for at least 6 months, but that's not to say I won't revisit it at a...
I'm trying to output a .csv format file for download via php, but over a secure connection (https). I have been using the following headers, but have found that in Google Chrome, the...
The reason for the LEFT JOIN of the stock table in the SELECT query is to see if the item has an associated entry in the stock table. Once the result set is returned to PHP then an INSERT to the...
The IDs of the returned rows are used in insert/update commands to another table, where the ID is a foreign key in the that table. It does however mean temporarily storing the data in...
Hi guys, taking your advice i have grouped the queries into one larger one rather than performing multiple single queries. The whole command has gone down to about 8 seconds and about 7.5 seconds of...
Hi Svidgen, thanks for your reply - are you saying it is better to have one SELECT...WHERE...IN (...,...,...) with multiple values than to have 80 SELECTs? I guess I haven't really thought about it....
Hi apeg, no errors, it's just that the content is not copied to the other <div>. However i have just tried a simple example at home and it works fine - will try the same when i'm back at work,...