Well, I'm trying to make something like this: http://habbcrazy.net/hcv3/php/text.p...bo&border=blue
I know how to get the text, but I don't know how to make it the font I want.
This is worded pretty bad, but w.e. :D
Thanks.
PS - I'm new in PHP.
Printable View
Well, I'm trying to make something like this: http://habbcrazy.net/hcv3/php/text.p...bo&border=blue
I know how to get the text, but I don't know how to make it the font I want.
This is worded pretty bad, but w.e. :D
Thanks.
PS - I'm new in PHP.
Insert some html code into your echo? You'll have to ask someone else for the code... Or add a css style sheet?
PHP Code:<?php
$text = $_GET[ 'text' ];
?>
create.html
create.phpHTML Code:<form action="test.php" method="get">
String: <input type="text" name="string" />
<input type="submit" />
</form>
I know how to get the text. But how can I make the output the Volter Font with a black border :SPHP Code:<?php echo $_GET["string"]; ?>
Edit: Yes Will.
If your new with PHP, your going to struggle with this. We do ours using PHP GD. For the font, we have a file uploaded and for the background, a file uploaded.
Simon (Invent) did ours :)
If I turn every letter into a variable is there a way I can do it?
I know a way without using GD, but it's pretty stupid.