• 0

Dynamic Signatures


Question

How would I make a signature that allows users to put a piece of text into my signature? I know you can use PHP, but I don't have the slightest clue about PHP

(Apart from Cutenews stuff)

Could someone make me a saple signature, very plain, and show me how to allow users to imput text into it thru my website?

Edited by TimRogers
Link to comment
https://www.neowin.net/forum/topic/301987-dynamic-signatures/
Share on other sites

Recommended Posts

  • 0
OK, I'm hosting it on my personal website.

So now, we can use colors and load function :D, well done! I suggest you allow different line thicknesses and it'll be perfect!

585785726[/snapback]

Thanks!!! Hehe funny you mention about the line thicknesses, I was working on that last night but had a few problems. I've had to move from Flash 5 to Flash 6 and that means there are some adjustments I need to make in order to get the thickness thing. Stay tuned!

I'll PM you when I get time for then next version! Thanks again :)

  • 0
Thanks!!! Hehe funny you mention about the line thicknesses, I was working on that last night but had a few problems. I've had to move from Flash 5 to Flash 6 and that means there are some adjustments I need to make in order to get the thickness thing. Stay tuned!

I'll PM you when I get time for then next version! Thanks again :)

585786955[/snapback]

You're welcome! I'm impatient!

  • 0

Mine isnt working :( lol. I feel so embarassed :p

http://www.wizzyworld.com/externals/sig/ is it.

Okay, so when I click "Change Sig" it doesnt change? Or the image above it doesnt display the change? :/

Also, whats the /admin/ folder for? Its empty?!

Pete

Edited by TheTrainMan
  • 0
Mine isnt working :( lol. I feel so embarassed :p

http://www.wizzyworld.com/externals/sig/ is it.

Okay, so when I click "Change Sig" it doesnt change? Or the image above it doesnt display the change? :/

Also, whats the /admin/ folder for? Its empty?!

Pete

585793292[/snapback]

Ok. It seems in your config file you didn't change the text position: the text is outside the picture limits. Try something like:

// Text position
define( "DYN_SIG_X", 0  );   // Frop the left
define( "DYN_SIG_Y", 60 );   // From the top

I discovered a small bug so please delete your dyn_sig folder (you can save/keep your DAT files, your fonts and your pictures, but not the other files), download the latest version on my website, install it and configure/customize it.

  • 0

Since I get a lot of PM's from members recently asking if they can have the code of my dynamic sig, I decided to post it here.

You need a PHP server with GD for this.

1. Save the code as sig.php

2. Make sure the dir is CHMOD'ed to give write access (755)

3. Create your signature image without the dynamic text and save it in the same directory as 'sig.png'

4. This script has a swear filter, but Neowin won't allow me to post that. Just add your own words to the swear filter. Just make sure there are no * in the filter.

5. The script produces an image 'signature.png' with the added text. Every change is logged to a log file.

That's about it. You can add extra stuff to it, but this is as basic as you can get. Have fun with it...

<?php
// code by 505
if (isset($_POST['sigtext1']))
{
//die('Service disabled for now... Back soon.');
$im = imagecreatefrompng('sig.png');
$white = imagecolorallocate ($im, 255, 255, 255);
imagestring($im,3,123,43,filter($_POST['sigtext1']),$white);
imagestring($im,3,123,55,filter($_POST['sigtext2']),$white);
imagepng($im,'signature.png');

$handle = fopen('sig.log','a+');
fwrite($handle,"------------------\r\n");
fwrite($handle,"time: " . date('d F Y, H:i:s') . "\r\n");
fwrite($handle,"ip: " . $_SERVER['REMOTE_ADDR'] . "\r\n");
fwrite($handle,"line 1: " . $_POST['sigtext1'] . "\r\n");
fwrite($handle,"line 2: " . $_POST['sigtext2'] . "\r\n");
fclose($handle);
echo 'Changed';
}

function filter($s)
{
// array with forbidden words (swear filter)
$forbidden = array('****','****','ass','suck','######');

$s = str_replace("\'","'",$s);
$s = str_replace('\"','"',$s);

for ($i=0;$i<count($forbidden);$i++)
{
 $s = preg_replace("/$forbidden[$i]/i",string($forbidden[$i],'*'),$s);
}
return $s;
}

function string($s,$c)
{
for($i=0;$i<strlen($s);$i++)
 $r .= $c;
return $r;
}
?>
<html>
<head>
<title>Change signature</title>
<style>
body,td {font-size: 12px;}
input {border: 1px solid black; font-size: 10px}
</style>
</head>
<body onload="sigform.sigtext1.focus()">
<div align="center">

<img src="signature.png"><br>
<form name="sigform" method="post" action="sig.php">
<table>
<tr>
<td>Line 1:</td>
<td><input type="text" name="sigtext1" maxlength="20"></td>
</tr>
<tr>
<td>Line 2:</td>
<td><input type="text" name="sigtext2" maxlength="20"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Change signature"></td>
</tr>
</table>
</form>
Please do not abuse this service<br>
Stay within the <a href="https://www.neowin.net/forum/rules.htm" target="_blank">neowin.net community rules</a><br>
<small>Note: changes will be visible to everyone on the neowin site. Changes, date, time and your IP-address are logged to a logfile.</small>
</div>
</body>
</html>

  • 0
okay, i got it working now :D

Is there a way to make the text bigger?

585794547[/snapback]

Change the value of DYN_SIG_SIZE in your config.inc.php file.

You should glance at it, really.

Edit: suggestions don't seem to work on your website. Check your file permissions.

Edited by Sphinx Myth
  • 0

Here are some dynamic signitures I have made for some neowin members :)

I will also create signitures for others who send me a private message or PM :)

ph3412t3h13

sig.PNG

Click the above image to change what the angry kid says!

neomilan

top.PNG

bill.GIF

Click the above image to change what Bill Gates says!

sumeet

sig.PNG

Click the above image to change the text!!

williamhook

sig.PNG

Click the above image to change the text!!

If anyone wants me to make them their own dynamic signiture feel free to PM me, and I will create it for you asap! :)

  • 0

Okay, now pooped off :(

I tried to make my own index page, and now when i click "Change Signature" it doesnt do anything!

http://www.wizzyworld.com/externals/sig/

Can it not be made that the options are stored in the actual file?

EDIT: Well, because I am doing things, then it is working now, but i bet i'll get the design of the page right, and it wont work :(

Edited by TheTrainMan
  • 0

Okay, so it doesnt like being in a table right? Doesnt like CSS right?

Can someone not get it to work?

Okay, I want it in this design - http://www.wizzyworld.com/externals/sig/wanted_index.php

so, can anyone make it work for me?

Also, for some reason my "post.php" isnt showing the image anymore when the person has changed it.

I so nearly got the other one to work, and now i am working with a new one and it still isnt working, but i dont know why.

  • 0

I'm sorry but it really annoyed me.

i just dont understand it and cant see how it is being in a box when the code doesnt say there is a box there, and why doesnt it like it in a box or seem to want to support CSS. I just dont get whats stopping it :@ :anrgy:

  • 0
I'm sorry but it really annoyed me.

i just dont understand it and cant see how it is being in a box when the code doesnt say there is a box there, and why doesnt it like it in a box or seem to want to support CSS. I just dont get whats stopping it :@ :anrgy:

585796886[/snapback]

Where abouts did you place the CSS on your page?

is it something like this?

<html>
<head>
<style type="text/css">
<!--

CSS CODE RIGHT HERE!!! <----- 

-->
</style>
</head>
<body>

REST OF CODE HERE!!!   <-----

</body>
</html>

  • 0

Yo.

I hadn't thought it would be so difficult to include my script.

So, I rewrote some things, renamed a few constants (more understandable). The form is now in only one part (sig_form.php), not two as previously (index_sig.php & post.php). That will help you to make your custom page, I also included into the ZIP archive an example of custom page which includes the script. By default, the form sends the data to index.php.

Finally, I made a version of the script which saves the sig into a file. It's better if your sig doesn't use dynamic data (like dates, IP etc.), it renders only once the sig (every time you change the text) and saves it (img/sig.png by default). That saves a lot of CPU resources.

Dyn Sig

DON'T FORGET TO MODIFY YOUR CONFIG FILE!

Edited by Sphinx Myth
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Age of Empires Mobile comes to PC, here's how to carry over progress from your phone by Ivan Jenic Image: YouTube/Microsoft Microsoft just released Age of Empires Mobile for PC. The game, officially called Age of Empires Mobile: PC Edition, is available for free on Steam and Microsoft Store, almost two years after its initial release for handheld devices. Age of Empires is one of those franchises that entire generations grew up with. The original came out in 1997, and immediately got people hooked to building civilizations and crushing their enemies on the battlefield. However, the franchise today is a far cry from its roots, as Age of Empires Mobile is, well, a game optimized for handheld devices, and not a classic RTS title we’ve all loved for years. And, of course, it includes in-game purchases. The PC version is still a mobile game at its core, but it’s been optimized for desktop play. There’s mouse control, full keyboard compatibility, and a refined UI. Microsoft also refreshed the visuals with some 4k textures, so the game should look better on larger screens. The game supports Crossplay, so you can switch between your phone, tablet, and PC without losing anything. But linked progress doesn’t come out of the box, as you have to enable it first. Here’s how to link your progress: On your mobile device, open Age of Empires Mobile. Go to Settings (Gear icon) > Account. Select Bind Account and choose a sign-in option. Once you enable account binding, sign in on PC using the same method, and your progress will be accessible across all your devices. Xbox Game Pass subscribers also get a bonus reward pack on PC, which includes: 1 Monthly Pass Token 1 Custom Resource Chest 10 Universal 60-Minute Speed-Ups 1,000 Empire Coins Exclusive Player Portrait Frame You can find more info about Age of Empires Mobile: PC Edition, as well as download links, on the Age of Empires official website.
    • Apple Watch Series 11 GPS just crashed to 30% off in this fast-moving Prime Day deal by Karthik Mudaliar The Apple Watch Series 11 is available for $279, down from its $399 list price, saving buyers $120, or 30%. Amazon labels the offer as selling fast, so the current price may not remain available for long. This GPS model features a 42mm aluminum case, an Always-On Retina LTPO3 OLED display capable of reaching up to 2,000 nits, and an Ion-X glass surface with improved scratch resistance. Apple rates Series 11 for up to 24 hours of normal use or up to 38 hours in Low Power Mode, with fast charging providing up to eight hours of use from a 15-minute charge. Health and fitness tools include sleep scoring, temperature sensing, ECG support, heart-rate alerts, workout tracking, sleep apnea notifications, and hypertension notifications, where available. The watch also carries IP6X dust resistance and 50-meter water resistance. This configuration is best suited to iPhone owners who want comprehensive health tracking, notifications, contactless payments, and workout data without stepping up to a larger or cellular-equipped model. The smaller case should also appeal to buyers who prefer a lighter watch, while the S/M band fits wrists measuring 130mm to 180mm. With the current generation now significantly below its usual retail price, this is a strong time to replace an aging Apple Watch or buy a first model without compromising on Apple’s newest health and display features. Grab the discounted Apple Watch Series 11 (sold and shipped by Amazon) Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • The laptop in the bedroom is an Acer with i7-10510U CPU. Acer's website states they will not be upgrading it so I had little choice other than disable secure boot. I know next to nothing on these matters so hopefully it will be fine.
    • GitHub removes manual model selection from Copilot free and student plans by Karthik Mudaliar GitHub is removing the ability to manually select an AI model from its Copilot Free and Student plans, making its automatic routing system the default and only way to choose a model. This means users on these tiers will no longer be able to deliberately select a particular OpenAI, Anthropic, Google, or Microsoft model for a task. In its announcement, GitHub said Copilot Auto will dynamically choose what it considers the best model for each request. Free and Student accounts will retain access to models from multiple families, although the available selection will continue to depend on the restrictions attached to each plan. GitHub did not identify a fixed pool of models that Auto will always use, and its documentation warns that model availability can change over time. GitHub describes Auto as more than a random fallback system. On supported surfaces, its task-optimization technology evaluates the complexity of a request alongside real-time information about model health and availability. Straightforward prompts can be routed to faster and less expensive models, while more demanding coding tasks may be sent to higher-cost reasoning models. The company says this approach should reduce rate limiting, latency, and failed requests. Auto generally selects one model along natural prompt-caching boundaries rather than repeatedly switching models during a session, as GitHub found that mid-session changes increased costs without producing sufficient improvements in output quality. Users can still check which model generated a response. In Copilot Chat, the information appears when hovering over an answer, while Copilot CLI and the Copilot cloud agent display the selected model alongside their output. Auto is available in Copilot Chat, Copilot CLI, and the cloud agent, with the exact implementation and release status varying between supported development environments. The latest restriction follows several months of adjustments to Copilot’s individual plans. GitHub temporarily halted new Pro, Pro+, and Student subscriptions in April as it sought to manage demand and service reliability. It later introduced token-based billing and began gradually reopening individual-plan registrations on June 17. Alongside the picker change, GitHub is retiring the “Preview” label from Microsoft-developed models. It argues that the label is no longer necessary because Auto handles model routing and models are continuously updated behind the scenes.
  • Recent Achievements

    • One Year In
      Philsl earned a badge
      One Year In
    • Dedicated
      Scoobystu earned a badge
      Dedicated
    • First Post
      Tom Schmidt earned a badge
      First Post
    • One Month Later
      D0nn13 earned a badge
      One Month Later
    • Rookie
      +ChiefOfNeo went up a rank
      Rookie
  • Popular Contributors

    1. 1
      +primortal
      460
    2. 2
      +Edouard
      177
    3. 3
      PsYcHoKiLLa
      124
    4. 4
      Michael Scrip
      79
    5. 5
      Xenon
      76
  • Tell a friend

    Love Neowin? Tell a friend!