Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #17.3K
Ranked #4K
~777 People Reached

7 Posted Topics

Member Avatar for spowel4

You could do something like this... You may need to add some validation, but the best part is that if you create more username/password fields in the form you won't have to change the code - it will just loop through them all [code=php] // Initialise the array - beware …

Member Avatar for shovels
0
243
Member Avatar for niazi

If you want to do it your self, as far as I know, you will need an audit (anyone who comes into contact with card numbers) These, I believe, are quarterly and cost a substantial amount. Unless you are going to be processing 1000's of transactions you are better of …

Member Avatar for selfhelpebooks
0
100
Member Avatar for frazehmad

Are buyers going to be 'searching' for properties by entering criteria? Then you want to return the properties for sale that match that criteria?

Member Avatar for frazehmad
0
91
Member Avatar for culp

Do people have to be registered to access the files? If you can get the people to register first you could prevent non-registered members from accessing the files at all. Another option could be to serve the files using PHP, possibly not the best way of dealing with the files, …

Member Avatar for shovels
0
81
Member Avatar for guyco

For 300 recipients you could write a PHP script that loops through an exported CSV list. Use the PHP mail function to send a customised email to each recipient individually. The main problem will be that if you do too many emails in one go you may run into problems. …

Member Avatar for shovels
0
69
Member Avatar for danarashad

Why not just add a timestamp to the SQL statement? I would also try to avoid using such names as time, date, etc for field names in a databases as this can cause problems. For example: $sql="INSERT INTO $tbl_name(username, password, level, email,fname,lname,time)VALUES('$uname', '$pword', '$level','$email','$fname','$lname', Now())";

Member Avatar for shovels
0
85
Member Avatar for DennisP

I had a similar issue with a site I wrote recently, and if I'm understanding your question you should be able to append QSA to the end. For example: ReWriteRule ^sub_folder/page.htm$ actual_page.php [L,QSA] Any parameters added onto the end of the url will be delt with in the 'normal' way.

Member Avatar for shovels
0
108

The End.