KnotBB
Long Post Testing - Printable Version

+- KnotBB (https://knotbb.com)
+-- Forum: Category One (https://knotbb.com/forumdisplay.php?fid=1)
+--- Forum: Forum One (https://knotbb.com/forumdisplay.php?fid=2)
+---- Forum: SF One (https://knotbb.com/forumdisplay.php?fid=11)
+---- Thread: Long Post Testing (/showthread.php?tid=2843)



Long Post Testing - iHydra - 08-12-2018

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP

THIS IS OP AND OP IS OP


RE: Long Post Testing - iHydra - 08-12-2018

And this is a 2nd post and is ugly.


RE: Long Post Testing - iHydra - 08-12-2018

3rd post obviously the best post.


RE: Long Post Testing - iHydra - 08-13-2018

THIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVER


THIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVERTHIS IS THE SECOND LONG POST EVER


RE: Long Post Testing - iHydra - 12-04-2018

Code
#libraries
from twilio.rest import Client

account_sid = 'AC79ac04d1sef19s7e1fg619ye24acc72b3'
auth_token = 'fdeacbd377737791f974e9417fbff29df6c'
client = Client(account_sid, auth_token)
message = "This is a test code block. Attempting to create a lightweight Copy Code feature. Stay tuned!"

for x in phoneNumbers:
    txtmsg = client.messages.create(body=message,from_='+13126519748',to=x)



RE: Long Post Testing - iHydra - 12-04-2018

PHP Code
if ( isset( $_FILES['fupload'] ) ) {

     print 
"name: ".     $_FILES['fupload']['name']       ."<br />";
     print 
"size: ".     $_FILES['fupload']['size'] ." bytes<br />";
     print 
"temp name: ".$_FILES['fupload']['tmp_name']   ."<br />";
     print 
"type: ".     $_FILES['fupload']['type']       ."<br />";
     print 
"error: ".    $_FILES['fupload']['error']      ."<br />";

     if ( 
$_FILES['fupload']['type'] == "image/gif" ) {

         
$source $_FILES['fupload']['tmp_name'];
         
$target "upload/".$_FILES['fupload']['name'];
         
move_uploaded_file$source$target );// or die ("Couldn't copy");
         
$size getImageSize$target );

         
$imgstr "<p><img width=\"$size[0]\" height=\"$size[1]\" ";
         
$imgstr .= "src=\"$target\" alt=\"uploaded image\" /></p>";

         print 
$imgstr;
     }
 }