~~NOTOC~~ ====== QGen ====== A simple, no-frills quote generator written in PHP. ===== Features ===== * Puts square brackets plus space (''> '') before each line of a text. * Copies the modified text to your clipboard. The jQuery code required for this is delivered via Google CDN. Feel free to host the code on your own server for privacy reasons. * No CSS, just old school HTML. 😎 ===== Source Code ===== QGen

QGen


A simple, no-frills quote generator that puts "> " before each line of a text.

 


* Link: https://wiki.helmutkaczmarek.de/code:php:qgen */ if(isset($_POST['submit'])) { // Retrieve text from clipboard $text = $_POST['text']; // Expand each line with "> " at the beginning $lines = explode("\n", $text); $modifiedText = ''; foreach($lines as $line) { $modifiedText .= "> " . $line . "\n"; } // Show the modified text echo "

Modified text:

"; echo "
"; echo "

" . $modifiedText . "

"; echo "

"; echo "
"; } ?>  

View sorce code.