Xyluz's Posts
Nairaland Forum › Xyluz's Profile › Xyluz's Posts
deylex77:http://isthisarealjob.com/mikeale/any-info-will-be-highly-appreciated.-401N77411890295 |
Robisky001:http://isthisarealjob.com/mikeale/hey-guys-help-confirm-this-interview-invite.-hope-it's-not-one-of-those-gnld.-2075775D2790980 |
Onyikii:http://isthisarealjob.com/mikeale/good-day,-i-got-this-interview-invite.-please,-is-it-real-or-fake-787035458M95975#comment |
jinx14:Seems fake. Sorry. http://isthisarealjob.com/mikeale/i-received-dis-277F23518766611#comment |
Hardeyholah:Yes, seems true enough. http://isthisarealjob.com/mikeale/please-how-true-is-this-03873312A808608 |
Sotonte1234:From initial Google search, it seems to be a real school. (http://isthisarealjob.com/mikeale/is-rabbi-model-college-in-ifo,-ogun-state-real-7274003839697P5) |
tadarachael:From preliminary research, yes, it's a real invite. (http://isthisarealjob.com/mikeale/is-this-invite-real-please-Z17820852634179). Do give it a try and keep us posted. |
Sotonte1234:What's the school name? would be easier to find out for you if the name is known. |
Fimba121:Its fake: http://isthisarealjob.com/mikeale/is-this-real-4492393098C9407 |
A few posts on how to identify real job posts https://medium.com/@xyluz/isthisarealjob-dont-go-for-that-interview-814f4db4cdaf |
BabaIbo:It's fake! Check http://isthisarealjob.com/mikeale/is-this-real-4492393098C9407 |
I wrote an article on medium here: https://medium.com/@xyluz/isthisarealjob-how-to-identify-fake-job-posts-1821235b71e In an attempt to help people avoid falling prey to fake job posts, we (at staybusy.ng) created isthisarealjob.com. Its still work in progress, but you can have a look and give feedback |
You might want to consider joining staybusy.ng |
Eeroh95:http://staybusy.ng |
DualCore1:This is probably an old post, but as an option, value attribute is no longer necessary for options in select tag, it automatically takes the value specific between the opening and closing of the option tag... in summary: Before: <select> <option value="text">text</option> </select> Now: <select> <option>text</option> </select> |
A7:LOL. that sounds so cruel and like a punishment of some sort... be nice bro... He just wants to integrate his code into wordpress... |
gozmos:It sounds like you're attempting to create your own php code and make it work within wordpress... here are a few suggestions that can help: 1. There are some plugins that allow you enter your php code directly into a wordpress page 2. You can create your own plugin (which is a more preferred option, and probably easier) 3. You can create the php codes (pages or application) separately, then have a link on your wordpress site to the application then a redirect back from the application/page/ or code to wordpress If you need more explanation of help with any of these suggestions, do let me know... And if i come up with other solutions, i'll update this post. Happy Holidays! |
gozmos:Maybe someone else can help you, personally i don't understand what you're saying... if you could explain better, that will be nice... ![]() |
ProElite:If your OS is authentic, then you shouldn't have this problem. If not, then you might encounter more problems later... |
rflexii:hi. You should have been given contact for GTB technician. I'm sure they can help you. But, if you have a sample code or give the response string sample from a request, maybe someone here can help you. ![]() |
A7:Actually single quote will work, if quote was the problem you should get an error, or a blank page if error reporting was turned off. Actually, the form you refused to type might be useful. Here are my suggestions if you haven't solved this issue yet: Comment out all your processes, do: echo '<pre>'; print_r($_POST); this is to check that the form input is actually been passed across. If all form input is displayed, then go ahead to check your database column names and ensure they all match. If the form input is not displaying, then we know what the problem is... check that the method and action are set right. Also check that the name of each field matches the respective name in your process page. |
Walexwal:Table 'u3766634_agripreneur.settings' doesn't exist Create Table settings in your database. |
Lets improve the web standard in Nigeria. Website and web technology in Nigeria is not up to standard... be part of the improvement: www.webranki.ng |
eiBADAn:Download here: http://phpmailer.worxware.com/index.php?pg=sf Tutorial here: http://codeforgeek.com/2014/11/phpmailer-ultimate-tutorial/ |
Dreyson69:Can you explain what you mean by Google adsense? ![]() |
exellent91:Nice effort. But still room for improvement. |
kentc3:You're welcome. Try to use either mysqli or PDO, mysql is deprecated. I have a short tutorial on PDO: http://xyluzcodes..com/2015/02/pdo-tutorial-series-6.html |
Jregz:Or PDO... |
kentc3:Try uploading the file without changing the name. Try these debugging tips: Did you check inside the images folder? Is the image there? If the image is there what name does it have? Manually put an image inside the image folder (copy and paste), then try using your code to display the image... Does it display the manually uploaded image? Hope this was helpful? Updated: check the image
|
kentc3:Try This: <?php mysql_connect( "localhost","Gospel","gospel" ) or die( "Could not connect" ); mysql_select_db("picture" or die("could not select db" ;$select=mysql_query( "SELECT * from `pix` WHERE sn= 23" ) or die( "could not find" ); if($select) { $me=mysql_fetch_array($select); echo "<img src='$me[image]' height='200' width='120'>"; } ?> If it doesn't work, you can debug by doing var_dump($me), if the image path is being displayed then the problem is your image tag. ++++++++++++++++++++++++++++++++++++++++++++++ FURTHER OBSERVATIONS kentc3:Try this: $ext = $_FILES["photo"]["type"]. That way you can say : if(($ext == "image/jpg"....)){ ... } This checks if your file is an image and that it has the right extension. Try not to use $_POST directly, or any other global variable directly, its better you use some kind of filter like filter_input(INPUT_POST, $fieldname) - read more on that here: http://php.net/manual/en/function.filter-input.php In my opinion, your database connection should be the first thing you do, if the database is not connected, there's no use doing anything else. I hope this was helpful. |
Vijon:What error message did you get? |

;