Archive for June, 2009
PHP Tutorial – 17 – Return Values
Go to my website http://thenewboston.com/ if you need any help or have any questions. I will answer them all there!
Subscribe if you like my videos!
Duration : 0:3:34
Learn PHP Tutorial Video Ch. 2 – Setup and Configuation
Get and up running quickly as we show you the fastest way to install a fully functional PHP development environment. In less than 10 minutes, you’ll be ready to start programming your own PHP scripts!
For more, see http://www.LearnPHPTutorial.com
Duration : 0:7:17
PHP question: Is there any way I can directly read a text file with variable length records in a PHP program?
(I do not know the length of each record ahead of time.)
Unfortunately, there is no function allow you to do that. However, you can make it your own. I assume you already know fread function and it takes in a pointer and length. What you have to do is offset the beginning pointer and the length (offset) to read certain amount of character until you hit the end of a record.
Example:
File content:
abcdefghijklmn
if you do:
fread($fptr, 5);
you will read in: abcde;
if you do:
fread($fptr+3, 5);
you will have: defgh;
My suggestion will be add an identifier at the end of each record, then read in character by character until you hit that special identifier.
How to make your own Program?
Hello.
I'm an advanced in PHP, Flash, Photoshop Designs, And many other programs, but I would like to leanr how to actually make a program? Any suggestions?
Learn any of the PROGRAMMING languages (C/C++/Java/VB…), write code and compile (and run) a program…
I am looking for a program where I can search for a speciafic text or string within multiple php files?
I have a php script which contains about 4000 files, I am looking for a program to search all the files and search for a string within these files.
I have tried searching via my windows search function, the one built in, and it's not find any files, so now I'm looking for a program that will search multiple files for me, if I could find one that would replace text, that would be even better
Hi, there are the best editor i ever seen: http://jedit.org/ Its have multiply search. Try it, hope it will help.
Website with php mail send/recieve/store etc possible ?
Sorry for the title, but it was alittle hard to know what to put..
my question.
i have a website ive created for someone.
it has different pages.. a guestbook page (php), and a blog page (also uses php)..
now, they have asked if its possible, to have a 'private' page, where, for example, someone emails them, and instead of receiving it at their pc end (outlook express or other mail program), the 'website' private page receives it.. and also, this same 'page' can also send emails.
is this possible ? is there any free written php out there that can do this? is it actually possible to recieve your normal pop3 emails to somewhere on your website/host, instead of through your mail software?
there may well be simpler answers to this, such as, just get a message board and send private messages, or somethin like that.. but i wanted to see if the original main question i was asked, was actually possible..
thanks in advance php knowledgeable people.. ![]()
to the webmail comment below:
yeah thats what ive said to them. their email address is an aol one, so i said, isnt there a webpage/mail for that address? and im still waiting for a reply. but the impression i got was they wanted everything on the one website/private page.
to me, id prefer them just use webmail, but if they insist on this way, then ill have to do this.
Isn't what they're asking for just Webmail – most email hosting accounts offer a web-based email account from which they can view/send emails. Just set up an email account that they don't have in Outlook.
PHP / MySQL Test Server Setup – Part 3
Mostly for my programming students.
Part 3 – This video walks you through how to test and configure the Apache web server. I don’t get into all the configuration options, just the ones that you’re most likely to use as a developer. Just the basics.
Duration : 0:9:56
PHP Tutorial: Request Forms (Part 1A)
Note: This video is meant to be watched in High Quality Mode.
The first episode of BryanEye.TV: Programming Customer Information Request Forms with PHP. The tutorial is for beginners who want to learn how to program their own HTML and PHP forms from scratch.
This video is part 1 of what will likely be a series of 3 or 4 videos to complete the tutorial.
Click here to view the INTRO:
http://www.youtube.com/watch?v=yx6Ab-HisYA
Part 1B: http://www.youtube.com/watch?v=ttbJa6lCNAo
Duration : 0:7:0
Some PHP editors that you can use it under
visit www.thenewboston.com for all my tutorials!