Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 05-21-2009, 05:51 PM   #1
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Application form script needed. please post

Be nice if it's a freebie but paid will work aswell.

Post them up please.

I've searched google, found only 2 so far that look good but,

one I couldn't download because the fucking link was broken
and the other one is $300 for a complete job website (NOT WHAT I WANT)

just something simple that I can upload and get it working in a few mins would be nice.
must be able to view the results for each person and not in bulk like a survey script.

Tanks in advance
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 05:52 PM   #2
lavitra
So Fucking Banned
 
Join Date: May 2009
Posts: 228
start a partnership like stickyfingerz
lavitra is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 06:20 PM   #3
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Quote:
Originally Posted by lavitra View Post
start a partnership like stickyfingerz
Umm?

NO!
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 06:22 PM   #4
lavitra
So Fucking Banned
 
Join Date: May 2009
Posts: 228
https://gfy.com/fucking-around-and-business-discussion/906532-looking-partnership-coder-flash-developer.html
lavitra is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 06:30 PM   #5
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Oh Dear!

Drama Alert!
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 06:32 PM   #6
lavitra
So Fucking Banned
 
Join Date: May 2009
Posts: 228
application forms are very simple to whip up.

This is just grabbing the field information and inserting to mysql db right ?

If you told a North American to do it, the market price would be no more than $35.

If you told a eastern european/indian/chinese programmer, you can get it done for $5~$10.

good luck!
lavitra is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 06:52 PM   #7
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Quote:
Originally Posted by lavitra View Post
application forms are very simple to whip up.

This is just grabbing the field information and inserting to mysql db right ?

If you told a North American to do it, the market price would be no more than $35.

If you told a eastern european/indian/chinese programmer, you can get it done for $5~$10.

good luck!
I will if I Fail tomorrow trying to do it myself
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 07:04 PM   #8
lavitra
So Fucking Banned
 
Join Date: May 2009
Posts: 228
PHP Code:
<form action="submit.php" method="POST">
  <div>
    <input type="text" name="firstname" size="31" />
    <input type="text" name="lastname" size="31" />
    <input type="text" name="email" size="31" />
    <input type="text" name="shit" size="31" />
    <input type="submit" value="Search" />
  </div> </form> 

then in your submit.php

<?php

if (isset($firstname) && isset($shit) && .... )){

$firstname mysql_escape_string(trim($_POST['firstname']));
$shit =  mysql_escape_string(trim($_POST['shit']));
..
..

$con mysql_connect("localhost","id","pass");
if (!
$con)  {  die('Could not connect: ' mysql_error());  }
mysql_select_db("databasename"$con);

//INSERT ROW
$insertrow "INSERT INTO 'databasename' (`ID` ,`text')
                                      VALUES ('',  '
$title');";
mysql_query($insertrow) or die(mysql_error());
}

?>






anyways this is really half assed. theres other ways of doing it.

good luck.
lavitra is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 09:45 PM   #9
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,372
http://www.appnitro.com/
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-22-2009, 08:26 AM   #10
Si
Such Fun!
 
Industry Role:
Join Date: Feb 2008
Posts: 13,900
Quote:
Originally Posted by lavitra View Post
PHP Code:
<form action="submit.php" method="POST">
  <div>
    <input type="text" name="firstname" size="31" />
    <input type="text" name="lastname" size="31" />
    <input type="text" name="email" size="31" />
    <input type="text" name="shit" size="31" />
    <input type="submit" value="Search" />
  </div> </form> 

then in your submit.php

<?php

if (isset($firstname) && isset($shit) && .... )){

$firstname mysql_escape_string(trim($_POST['firstname']));
$shit =  mysql_escape_string(trim($_POST['shit']));
..
..

$con mysql_connect("localhost","id","pass");
if (!
$con)  {  die('Could not connect: ' mysql_error());  }
mysql_select_db("databasename"$con);

//INSERT ROW
$insertrow "INSERT INTO 'databasename' (`ID` ,`text')
                                      VALUES ('',  '
$title');";
mysql_query($insertrow) or die(mysql_error());
}

?>






anyways this is really half assed. theres other ways of doing it.

good luck.
Thanks i'll give it a shot a bit later

Quote:
Originally Posted by fris View Post
That looks very useful. thanks fris
Si is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-22-2009, 09:40 AM   #11
NaughtyRob
Two fresh affiliate progs
 
NaughtyRob's Avatar
 
Industry Role:
Join Date: Nov 2004
Location: Inside teen pussy
Posts: 29,602
This one kicks ass and is very easy.
http://www.coffeecup.com/form-builder/

See it in action here...

http://www.sincitytalent.com/myform.html
NaughtyRob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-22-2009, 09:55 AM   #12
candyflip
Carpe Visio
 
candyflip's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: New York
Posts: 43,064
MachForms is the shit. I see Fris already beat me to it, but that's mostly because he knows what he's talking about.
__________________

Spend you some brain.
Email Me
candyflip is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.