Μαρ 6, 2023
Μετά από ένα πανικό, αρκετές ώρες ψαξίματος στο internet και ταλαιπωρία, ΒΡΕΘΗΚΕ, ΝΑΙ, βρέθηκε το CD με τους drivres για μία μητρική “Turbo-X”.Έκανες που έκανες την πατάτα και πήρες μηχανάκι Turbo-X, πέταξες και το CD???!!!!Ο κύριος λόγος να αποφύγεις ένα...
Ιούλ 16, 2021
Παρακολουθώντας IT κανάλια στο youtube έπεσα πάνω σε ένα από τους γνωστούς testers για hardware, το Tech Yes City. Σε βίντεο τους βεβαιώνουν ότι έχουν ελέγξει τα κλειδιά που δίνουν και είναι εντάξει. Δημιουργήσαμε κωδικό για “Affiliate Program” με την ελπίδα ότι αν...
Δεκ 20, 2016
Making an application that uses a dial-up modem is not only tricky because of the hardware-software connection, but also for finding the right hardware and setting it up properly. Be careful when you are buying a modem for caller id, make sure not only that it says...
Δεκ 16, 2016
You started your session, then you asked if it is a post request or not. Then you checked if that post variable isset() to start your code. Unfortunately the code never run and you have no idea what happened. Add the 2 lines in red in the following code to find out...
Φεβ 8, 2016
This is an easy function to add or remove months from a date in PHP. There is a limitation, you can only subtract up to 999 years, but you can change that by increasing the 12000 number in the code, to whatever you want to. function add_month($strbegin, $count) {...
Φεβ 4, 2016
Here is a simple code to make an HTTP call with the CURL library. The call is also passing 2 parameters and the line will looks like: http://somewebsite.com/web_server.php?param1=12345¶m2=67890 This is also requires the installation of the curl library....