| bio | website | todayisaw.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 6 months |
| seen | May 10 at 17:04 | |
| stats | profile views | 15 |
|
Nov 27 |
answered | Can I develop a social networking Site using WordPress and its Plugins? |
|
Nov 26 |
revised |
Let registered users add posts added 93 characters in body |
|
Nov 26 |
awarded | Supporter |
|
Nov 26 |
answered | Let registered users add posts |
|
Nov 25 |
asked | Keep post's draft date after publishing? |
|
Nov 24 |
asked | Google Map Latitude and Longitude values in form |
|
Nov 23 |
answered | WordPress strips some attributes for author posts |
|
Nov 20 |
revised |
Making a client area in WordPress - Any good tutorials or plugins? added more info |
|
Nov 20 |
answered | Making a client area in WordPress - Any good tutorials or plugins? |
|
Nov 19 |
comment |
Front end submit form with jquery form plugin I'll try it. Thanks for all your help. And sorry about the chat like comments @Rarst. I'll keep it shorter next time. |
|
Nov 18 |
comment |
Front end submit form with jquery form plugin Hey, if you have a chance, would this be the correct way of securing ? $title = $_POST['name'] = wp_filter_nohtml_kses( $_POST['name'] );
$content = $_POST['comment'] = wp_filter_nohtml_kses( $_POST['comment'] );
$email = $_POST['email'] = is_email( $_POST['email'] );
$url = $_POST['url'] = esc_url( $_POST['url'] ); |
|
Nov 17 |
awarded | Commentator |
|
Nov 17 |
comment |
Front end submit form with jquery form plugin One last question. Do any additional security measures need to be implemented in this? |
|
Nov 17 |
awarded | Scholar |
|
Nov 17 |
accepted | Front end submit form with jquery form plugin |
|
Nov 17 |
comment |
Front end submit form with jquery form plugin yup! that worked. You did say that in your original answer, I just didn't read it carefully enough. Thank you so much!!! |
|
Nov 17 |
comment |
Front end submit form with jquery form plugin yes. name="form_sub". just like in my comment above. |
|
Nov 17 |
comment |
Front end submit form with jquery form plugin aha. cool. any idea why the submit is not working? |
|
Nov 16 |
comment |
Front end submit form with jquery form plugin btw, how do you post your code? I add the two `` but my comment doesn't look like yours. |
|
Nov 16 |
comment |
Front end submit form with jquery form plugin It's still not working. This is what I have on my template page <?php
/*
Template Name: Submit
*/
?>
<?php get_header(); ?>
Form this
<form action="" name="form_sub" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit" />
</form>
<?php get_footer(); ?> I checked everything and can't seem to find where the mistake is. |