I'm using the contact form 7 plugin in wordpress and I have generated a text field like this:

 [text* your-name 30/ "<?php $_GET['name']; ?>"]    

I have to set value of input name which comes from another form with GET method but it's not worked. Is there a solution?

link|improve this question

75% accept rate
feedback

1 Answer

try

 [text* your-name 30/ "<?php echo $_GET['name']; ?>"]  
link|improve this answer
for this instead of input tag, it displays ; ?>"] – Kartik it Jan 20 at 7:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.