Php script that puts text into image

Monkey Boy

New Member
imm looking for a script that does this ...http://www.sloganizer.net/en/
but just the bit so that if ur code looks like such
<a href="http://www.sloganizer.net/en/" target="_blank" title="Sloganizer - the slogan generator"><img src="http://www.sloganizer.net/en/style3,TEXT.png" border="0" alt="generated by sloganizer.net" title="This slogan was generated by sloganizer.net"/></a>

that wen u change the keyword it changes it on the picture ( TEXT is the keyword)
 

compumodo

New Member
im confused about exactly what your trying to do, but here is my attempt:

This consist of two pages that look the same except on the first page you have this form


<form action="process.php" method="post">

<input type="text" name="keyword" size="24" />

<input type="submit" name="submitButton" value="Generate" />

</form>

Page two processes what was entered in the form, I have named it process.php but you can name it whatever you like as long as it matches what is in your forms action and ends with the extension .php

<?php

$keyword = $HTTP_POST_VARS['keyword'];

echo "<h3>blah blah blah $keyword blah blah</h3>";

?>

I don't know if this is what your talking about, but basically all this script does is take the text entered in the form, then puts it in with the text you already have written (blah in this case)

If you wanted to randomize the keyword with different blocks of text you could set the text up in an array

good luck
 
Top