Search found 12 matches

by clonemaster
Fri Nov 15, 2013 2:59 am
Forum: HTML, CSS and other UI Design Technologies
Topic: Form not sending email
Replies: 1
Views: 5106

Form not sending email

Hi all, I have a form which uses forms.js and MailHandler.php. Mail is not send, and I see the message in the browser so it's partially ok.. Need an expert look on all parts to find out what is hoing wrong.. The code (I know it's a lot.. sorry) Html: <form id="ContactForm" action="mai...
by clonemaster
Sun Mar 20, 2011 2:00 pm
Forum: Databases
Topic: Query to get some values
Replies: 0
Views: 600

Query to get some values

Not sure if this is teh correct place, but I'm getting desperate. so sorry if it's not. I have a Query in Access which gives good results. I'm trying to use this query in the On Open event of a form, but I can't get it to do what I want.Tried several things, googled etc. Hope someone can help me out...
by clonemaster
Fri Sep 24, 2010 5:41 pm
Forum: PHP - Code
Topic: scramble emailaddress
Replies: 3
Views: 288

Re: scramble emailaddress

Now that's the reply I was waiting for !
Thank you so much for pointing this out for me.
I wasn't aware of those tags..
Phew... imagine how I must feel now.

:crazy:

Thought this was a forum where people helped eachother with coding questions..
Must be my mistake..
by clonemaster
Fri Sep 24, 2010 4:01 am
Forum: PHP - Code
Topic: scramble emailaddress
Replies: 3
Views: 288

scramble emailaddress

Hi, I have a form for a guestbook, where visitors of the website can leave a message, including their emailaddress. All input is written to a txt file which is displayed on the page where the form is. Is there a way to display the emailadress funtional but not readable for spambots? This is the code...
by clonemaster
Tue Sep 21, 2010 1:32 am
Forum: PHP - Code
Topic: Securing guestbook
Replies: 0
Views: 611

Securing guestbook

Hi all, I need a bit help here.. I have a guestbook page(gasten.php) with a form, redirected to action.php then written to gastenboek.txt action.php file: <?php //error_reporting(E_ALL); $amount=15; if ($_POST['action']=='write') { $file=fopen('gastenboek.txt','a'); $message=$_POST['message']; $mess...
by clonemaster
Tue Sep 14, 2010 2:24 am
Forum: PHP - Code
Topic: Get rid of form values after submitting
Replies: 2
Views: 614

Re: Get rid of form values after submitting

Thanks for replying, byt the matter is solved already
by clonemaster
Sun Sep 12, 2010 10:52 am
Forum: PHP - Code
Topic: Get rid of form values after submitting
Replies: 2
Views: 614

Get rid of form values after submitting

Hi all, I have a form but when the message is submitted, I'd like to clear the fields (this is working) but also reload the page without the values form the fields, which is now behind the ? of the URL This is what I have: <?php $amount=15; if ($_GET['action']=='write') { header('location: gasten.ph...
by clonemaster
Mon Aug 03, 2009 9:18 am
Forum: PHP - Code
Topic: Creating variable from date
Replies: 11
Views: 482

Re: Creating variable from date

I get Undefined variable: date
by clonemaster
Sun Aug 02, 2009 4:40 pm
Forum: PHP - Code
Topic: Creating variable from date
Replies: 11
Views: 482

Re: Creating variable from date

Well, the php I posted does echo out some yearnumbers, but how do you transform this code to so the output is shortened?
Sorry for being noob..
by clonemaster
Sun Aug 02, 2009 4:06 pm
Forum: PHP - Code
Topic: Creating variable from date
Replies: 11
Views: 482

Re: Creating variable from date

Ehhh :oops:
where do I put this code jack ..?
by clonemaster
Sun Aug 02, 2009 3:58 pm
Forum: PHP - Code
Topic: Creating variable from date
Replies: 11
Views: 482

Re: Creating variable from date

I understand what you say, but this is the way it is.. I'm helping some guys with their data.. I think it is designed this way, because the actual data is coming from an MS Access db, which is used by several clubs al over the country giving all kinds of problems to deal with.. including a yearly cl...
by clonemaster
Sun Aug 02, 2009 1:20 pm
Forum: PHP - Code
Topic: Creating variable from date
Replies: 11
Views: 482

Creating variable from date

Hi, Trying to automate some things with a php script, like duplicating table (structure only) and name it with 'tablename _09 ' for this year, tablename _10 for next year and so on. Got the part done where I define the year, but how to shorten it to _"last two numbers of year" <?php define...