Everything posted by SVBokenham
-
Best - html - css - php - javascript editor
Komodo Edit!!!!!! It's amazing!!
-
Security
This is a great topic to cover we should all try and contribute. I'm currently developing a new site with an admin section which hopefully will not be vulnerable to the mentioned types of attacks. For most input screening, regular expressions come in handy because you can accept only the data you want and discard the rest.
-
creating an html home page after an inputed name
.
-
Online Payment Transaction Script
Ah thats good to know.
-
creating an html home page after an inputed name
You could use a .htaccess file to redirect website.com/myprofile.html to website.com/profile.php?user=myprofile or rewrite the url to load the php page without changing the url. http://www.yourhtmlsource.com/sitemanageme...lrewriting.html Is a good start.
-
Online Payment Transaction Script
Can the PCI DSS be met on shared hosting? Also you would have thought that your host runs anti virus and firewalls, surely we'll have to contact them?
-
Online Payment Transaction Script
I understand the way a secure electronic transaction works. Just not how to implement them! I'm thinking the reason this topic is not taking off is because the scripts involved would like to stay hidden.
-
Online Payment Transaction Script
I'm very interested in this too! Surely a payment class could be written. Can anyone enlighten us on their experiences? Thanks.
-
My Website is finally UP!
Thank you!
-
My Website is finally UP!
Right I actually think I have cracked it this time! Seriously.... Please have a look! Thanks.
-
My Website is finally UP!
Thought I read it through thoroughly! May have to change the header again! TIA
-
My Website is finally UP!
Hi guys! I think I've done it!! what do you all think? TIA!
-
My Website is finally UP!
I had a look at that set, looks very nice! I decided to change the ones I already had, looks alot better now! I think I'm just about finished with the design! Anyone else with any suggestions? Thanks again!
-
My Website is finally UP!
Hello everyone. Thanks again for all the ideas so far. I have injected some colour into the site now and I think it's about finished. Please can you all have a look again. Thanks! SVBokenham
-
My Website is finally UP!
Right I've replaced the badges at the bottom with the text. Does look a bit neater. I'll be working on the header through the week to make it a bit more of a feature. Goldstein I'm based in Colchester. Thanks everyone for your help. I'll let you all know when I have updated the header. Shaun.
-
My Website is finally UP!
Thanks for all your feedback and great comments. I will change the copy a little more, thanks for the tips wizely! Any suggestions for the navigation? Maybe the same sort of thing just using buttons instead? Well slightly different. PNG why? Did you mean for the gradient using it's transparency? The header definately needs a little more to it! Thanks all again.
-
My Website is finally UP!
Right, I've been at it for the last day or so changing the copy and the colours a little, please let me know what you think. Thanks again.
-
My Website is finally UP!
ROFL! Anyone else with suggestions? TIA
-
My Website is finally UP!
Thank you for taking the time to have a look. I have corrected the spelling mistakes and changed the wordings. Which now should make more sense. As for the banner / colours I agree green is a good idea and will start on that shortly. Any other suggestions would be great. Thanks.
-
My Website is finally UP!
Thanks for the quick reply. I definately agree with the arrows. I shrunk them a little. Looks alot better now IMO. I'n not quite sure what to do about the header as it could add alot of colour to it. I'm a little out of ideas at the moment. Thanks for the comment about the coding. Anyone else? TIA
-
My Website is finally UP!
Hello guys. I'm a bit new here and would like some feedback on my website. Bokenham.net Please could you have a look. Thanks.
-
Video Hit Counter?
http://www.sitepoint.com/article/php-mysql-tutorial/2 Is a good tutorial. Create a single field database that increments on page loa is the idea. The tutorial will show you php/mySql.
-
iMac Advice
Have you been on the Apple UK online store recently? AluImacs just got a bit of an upgrade!
-
Video Hit Counter?
You could create a database with one table and one entry just the number of hits. when the page loads retrieve the data from the table and display it on the page +1 then further down the page update the database with +1. make sense?