The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
[help] How to get new thread title from external using POST
hello,
is there a way to get the TITLE value for new thread from external form? i want to able to make something like this form TITLE: ........... [submit] then using POST, the newthread inside vbulletin will be able to get the title i submitted on the previous form. thanks EDIT: the form code Code:
<form name="input" action="vb418/newthread.php" method="post"> Judul: <input type="text" name="title" /> isi: <input type="text" name="pagetext" /> forum: <input type="text" name="forumid" /> <input type="hidden" name="securitytoken" value="<?php echo($vbulletin->userinfo['securitytoken']); ?>" /> <input type="submit" value="Submit" /> </form> |
#2
|
|||
|
|||
You could try something like this:
Code:
<form name="input" action="vb418/newthread.php?do=newthread" method="post"> Judul: <input type="text" name="subject" /> isi: <input type="text" name="message" /> forum: <input type="text" name="forumid" /> <input type="hidden" name="do" value="postthread"/> <input type="hidden" name="preview" value="1"/> <input type="hidden" name="securitytoken" value="<?php echo($vbulletin->userinfo['securitytoken']); ?>" /> <input type="submit" value="Submit" /> </form> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|