Lissa Explains it All:  Web Design Forums  

Go Back   Lissa Explains it All: Web Design Forums > LEIA Archives > Web Site Help > Advanced Programming

Notices

 
 
Thread Tools Display Modes
  #1  
Old 10-30-2006, 02:01 AM
savethescene01 savethescene01 is offline
n00bzilla
 
Join Date: Oct 2006
Posts: 3
savethescene01 is on a distinguished road
generators?

hi,ive searched the forums for how to make a basic generator,but i seem to not be able to find what im looking for.=/.does anyone have the code for maybe one or two things that are being generated?
Sponsored Links
  #2  
Old 10-30-2006, 06:05 PM
Douglas's Avatar
Douglas Douglas is offline
eL33T
 
Join Date: Mar 2005
Location: BC, Canada
Posts: 4,750
Douglas is a jewel in the roughDouglas is a jewel in the roughDouglas is a jewel in the rough
What are you trying to generate lol :P
__________________
Ne jamais mangez la neige jaune.
  #3  
Old 10-30-2006, 06:55 PM
savethescene01 savethescene01 is offline
n00bzilla
 
Join Date: Oct 2006
Posts: 3
savethescene01 is on a distinguished road
maybe something simple like where they can type in a hex code,to create a code like this <font color="hex code here">text here</font>..and i can just add more where i see fit.
  #4  
Old 10-30-2006, 09:13 PM
Douglas's Avatar
Douglas Douglas is offline
eL33T
 
Join Date: Mar 2005
Location: BC, Canada
Posts: 4,750
Douglas is a jewel in the roughDouglas is a jewel in the roughDouglas is a jewel in the rough
Something like this:

PHP Code:
<?php
if (isset($_POST['submit'])) {
$hex $_POST['hex'];
$text $_POST['text'];
  if (
strpos($hex'#') !== FALSE) {
?>
Your code:<br />
<textarea><font color="<?php echo $hex?>"><?php echo $text?></font></textarea>
<?php
  
}
  else {
?>
Your code:<br />
<textarea><font color="#<?php echo $hex?>"><?php echo $text?></textarea>
<?php
  
}
}
else {
?>
<form action="page.php" method="post">
<table border="0">
<tr>
<td>Hex Code:</td>
<td><input type="text" name="hex" maxlength="7" />
</tr>
<tr>
<td>Text:</td>
<td><input type="text" name="text" /></td>
</tr>
</table>
<br />
<input type="submit" name="submit" value="Go" />
</form>
<?php
}
?>
Not totally secure but it works
__________________
Ne jamais mangez la neige jaune.
  #5  
Old 10-30-2006, 10:58 PM
savethescene01 savethescene01 is offline
n00bzilla
 
Join Date: Oct 2006
Posts: 3
savethescene01 is on a distinguished road
thanks

thank you so much!that is exactly what i needed.
  #6  
Old 10-31-2006, 02:05 AM
Douglas's Avatar
Douglas Douglas is offline
eL33T
 
Join Date: Mar 2005
Location: BC, Canada
Posts: 4,750
Douglas is a jewel in the roughDouglas is a jewel in the roughDouglas is a jewel in the rough
No problemo :P
__________________
Ne jamais mangez la neige jaune.
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
layouts without generators loveyou_alwyz MySpace 3 08-21-2006 12:34 PM
Generators please!!! astrid92 JavaScript/DHTML 0 08-08-2006 10:27 AM
Generators cookie_maker Advanced Programming 2 04-24-2006 04:54 AM
Custom Graphic Text Generators cowabunga44 Graphics 2 07-27-2005 02:49 PM
Name Generators Caitlin JavaScript/DHTML 2 09-13-2003 07:51 AM


All times are GMT. The time now is 01:23 AM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.