Archive for May, 2009
Welcome to the Famous Internet Programmer Blog
Welcome, I created this site to allow Internet Marketers and Progammers a place to come for quality information on php programming, tips, and tricks that I and others use in our Internet Marketing.
Please stop back frequently and see all the new information I have to offer.
If you have questions or comments feel free to leave them on the posts or send a message to me in the contact page.
Sincerely,
Glen Barnhardt
I need someone, or a company to help with my web site. Just needs a little programming for php?
I need someone, or a company to help with my web site. Its almost done, just needs a little programming for php, and a data base moved and a few small changes. Someone who knows what they are doing and reliable, ASAP
If you're in a true rush, and if your needs are fairly simple (like, say, a PHP program to send the output of a contact form or a PHP to count the number of times somebody views your page, or something "conventional" or "traditional" like those…while you're looking for that tried and true programmer among the answers here, also look on Google…for there are lots of *free* PHP scripts and services just waiting to be used, like:
http://www.jotform.com for email responses to forms (really easy to use!!!)
http://www.statcounter.com for page visitor counter (again, really easy to use!!!)
…but I'm sure you'll find a good ol' trusty programmer really quick! Good luck! (I'd volunteer, but I'm a rather private sort…and I don't need a job)
How does wed hosting work? What if I have a php program do I copy and paste it please help?
If I want to create a site and have all the programming as php files how does it exactly work
Please helpppp
Host Gator provides Shared, Reseller and Dedicated web hosting solutions.
http://hostgator.adda.ws/
Hope it helps.
A code to restrict users from viewing content?
I been getting much much better at php, im making log in and registration pages, but i need a code (preferable php) that will check to see if the user is logged in or it will redirect them to the log in page. Plus since i did all the advanced programming in php and all the simply stuff in html, can i include the php file into my html file?Any help would be appreciated.
Lean about sessions. You'd need to start the session on every page, set the session if the login credentials are correct, unset on logout, redirect if the expected session isn't set or is empty (in case it's set, but empty).
Basically
session_start();
at the top of each page (or a include that's loaded before output, however you're doing it)
// check for session. Unless it's the login page or you'll loop
if (isset($_GET['go']) || $_GET['go']<>'login' && (!isset($_SESSION['user_id']) || empty($_SESSION['user_id']))) header("location: index.php?go=login");
for your login sequence
// check credentials
// your code here
// set session
$_SESSION['user_id']=$theuserid;
// continue to rest of page or redirect
Modify that to suit your own code. But have a quick look at session handling http://uk2.php.net/manual/en/book.session.php because you need to use them by the book.
(PS I use isset() because I don't like to produce errors, whether I've got error reporting off or not. People often ask this.)
What is the best software programming language equivalent to PHP?
Looking for a programming language that is equivalent to PHP.
I'd like if it was Object Oriented.
Yeah but I'm looking for on to make software.
PHP was designed to have syntax very similar to C++. C++ can be written in an object-oriented way, or not, depending on which you think will be easier. Maybe you should try that.
Learn it here:
http://www.cprogramming.com/tutorial.html#c++tutorial
… and get a good free IDE for it here:
http://www.bloodshed.net/devcpp.html
What is the best framework to PHP programming language?
I would like to use a PHP framework in my work and you can help me to choose one.
The best one I work with it is the dream weaver
Dreamweaver tutorials and PHP Install
Dreamweaver tutorials, installing PHP 5 learning how to program in php and Dreamweaver
Duration : 0:3:3
Object Oriented Versus Procedural Programming In PHP 4
A talk given by Robert Peake for LAMP SIG in Los Angeles about the pros and cons of object oriented versus procedural programming in php. Based on an article for Zend.com DevZone at: http://devzone.zend.com/node/view/id/1236
Duration : 0:4:29
PHP Tutorial - 2 - Basic Output and Variables
Go to http://thenewboston.com/ if you need any help or have any questions. I will answer them all there!
Duration : 0:7:8
Object Oriented Versus Procedural Programming In PHP 3
A talk given by Robert Peake for LAMP SIG in Los Angeles about the pros and cons of object oriented versus procedural programming in php. Based on an article for Zend.com DevZone at: http://devzone.zend.com/node/view/id/1236
Duration : 0:7:56