INTERTEXTrEVOLUTION

Make.Hack.Play.Learn

Greg McVerry / Writing & conversations

Post archive

Browse the things I’ve written, shared and replied to.

Subscribe via RSS ↗

Browse by date

All dates
March 2019
MonTueWedThuFriSatSun
152223315
4285186357438189231019
1110124813131416151216231734
186193620292114224223442422
2554261527542829295930223110

6 posts have no recorded date and appear under “All dates.”

March 10, 2019

19 posts

Greg McVerry

Flood

Fun Live Album for some early morning @IndieWebCamp Online hacking.

Greg McVerry

Update on @IndieWebCamp Hack Day Proect-The Guestbook

UPDATE THIS DID WORK...I was uploading the wrong file by FTP...over and over again...and scratching my head Still working on the Guestbook Project .This didn't work <?php $var1 = $_POST['user_name']; $var2 = $_POST['user_text']; $var3 = $_POST['user_instagram']; $var4 = $_POST['user_twitter']; $var5 = $_POST['user_email']; $var6 = $_POST['user_msg']; $fileHa

Greg McVerry

Learning what you can't do with PHP

Tried this as guestbook after I was able to save plain text to an html file, it's not the right thing to do...so close...Can display the data but need to display each entry and still can't get pesky var6 to display @InideWebCamp Online <?php $var1 = $_POST['user_name']; $var2 = $_POST['user_text']; $var3 = $_POST['user_instagram']; $var4 = $_POST['user_twitt

Greg McVerry

The Text File is updating from the Guestbook

The Guestbook project continues as @IndieWebCamp Online continues Martijnhttps://vanderven.se/martijn/Martijnhttps://vanderven.se/martijn/Gregjgregorymcverry.comjgmac1106jgmac1106ggg@aa.comGregjgregorymcverry.comjgmac1106jgmac1106ggg@aa.comGregjgregorymcverry.comjgmac1106jgmac1106yyy@aa.comGregjgregorymcverry.comjgmac1106jgmac1106yyy@aa.comGregjgregorymcverr

Greg McVerry

Guestbook working: https://quickthoughts.jgregorymcverry.com/2019/03/10/when-you-are-driving-yourself-crazy-now going to check the file I save, though

In reply to quickthoughts.jgregorymcverry.com ↗

Guestbook working: https://quickthoughts.jgregorymcverry.com/2019/03/10/when-you-are-driving-yourself-crazy-now going to check the file I save, though wondering if there is anything wrong with just using GET, saving all data in the url, too fragile? #IndieWeb Then I need to figure out how to save each entry to the same HTML file

Greg McVerry

Update on @IndieWebCamp Hack Day Proect-The Guestbook

Still working on the Guestbook Project .This didn't work <?php $var1 = $_POST['user_name']; $var2 = $_POST['user_text']; $var3 = $_POST['user_instagram']; $var4 = $_POST['user_twitter']; $var5 = $_POST['user_email']; $var6 = $_POST['user_msg']; $fileHandle = fopen("myDataFile", 'w'); fwrite($fileHandle, $var1); fwrite($fileHandle, $var2); fwrite($fileHandle,

Greg McVerry

Got to here https://gist.github.com/jgmac1106/c4cd4bef98acd88729289d9e4c3b9fe6 with thanks of https://vanderven.se/martijn/ I learned the echo can go

In reply to quickthoughts.jgregorymcverry.com ↗

Got to here https://gist.github.com/jgmac1106/c4cd4bef98acd88729289d9e4c3b9fe6 with thanks of https://vanderven.se/martijn/ I learned the echo can go anywhere, PHP is pretty cool, what I wanted, fewest files and compiling possible....now if I could figure out what is wrong with pesky var6 @IndieWebCamp Online

Greg McVerry