PHP School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!

Welcome to Dream.In.Code
Become a PHP Expert!

Join 300,406 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,662 people online right now. Registration is fast and FREE... Join Now!




Request a PHP Tutorial

5 Pages V  1 2 3 > »   

Request a PHP Tutorial

Rating  5
max302

16 Nov, 2007 - 05:55 PM
Post #1

Proud supporter of the lulz
Group Icon

Joined: 5 Mar, 2006
Posts: 1,281



Thanked: 2 times
Dream Kudos: 200
My Contributions
I think that PHP deserves this kind of topic too.

If you like to see a tutorial about anything PHP, just ask for it here.

User is offlineProfile CardPM
+Quote Post


snoj

RE: Request A PHP Tutorial

16 Nov, 2007 - 07:05 PM
Post #2

Now with 10% more nom!
Group Icon

Joined: 31 Mar, 2003
Posts: 3,369



Thanked: 29 times
Dream Kudos: 775
My Contributions
Pinned.
User is offlineProfile CardPM
+Quote Post

snoj

RE: Request A PHP Tutorial

17 Nov, 2007 - 05:53 PM
Post #3

Now with 10% more nom!
Group Icon

Joined: 31 Mar, 2003
Posts: 3,369



Thanked: 29 times
Dream Kudos: 775
My Contributions
I'll prolly start it sometime...but what about programming a GUI application using PHP? Anyone interested?
User is offlineProfile CardPM
+Quote Post

nav33n

RE: Request A PHP Tutorial

23 Nov, 2007 - 05:55 AM
Post #4

D.I.C Head
**

Joined: 2 Oct, 2007
Posts: 71



Thanked: 6 times
My Contributions
smile.gif sounds interesting !
User is offlineProfile CardPM
+Quote Post

dubs07

RE: Request A PHP Tutorial

3 Jan, 2008 - 03:36 PM
Post #5

D.I.C Head
**

Joined: 3 Jan, 2008
Posts: 107


My Contributions
hi guys i am completely new to this site and to coding (apart from HTML noob ) but i have made a few website but i am short on a few things e.g. PHP

this may be noob question but i want to have users login, register etc.

What coding do i need to do? And in dreamweaver if i choose New>Dynamic Page>PHP . can i stil code and design like a basic html page??

sorry if thats too confusing sorry msg me and i will try to explain better
User is offlineProfile CardPM
+Quote Post

scottyadam

RE: Request A PHP Tutorial

22 Jan, 2008 - 10:54 AM
Post #6

D.I.C Head
**

Joined: 3 Dec, 2007
Posts: 73



Thanked: 1 times
My Contributions
Ok, I personally use Namo Web Editor and it is very simple to create a PHP file and you can edit it like a normal document. Now...after saying that, you will see (or at least in my web editor) I will see a script tag with a question mark telling me what php tags are embedded in the php page. I presume it is the same in Dreamweaver but as I haven't used it for a while, I wouldn't know....

I create my php pages first in notepad and then save them with a .php extension and then drag them over into my web editor and there I use it to add different things to it. My document is surrounded in <html> tags with small bits of php code in it...

Now...for php I don't know if this is what you are asking but to make a pure php page the tages should be

<? you stuff here ?>

If you want to have a login script I would download this one that I got it is called vAuthenticate...it is free and I just modified it to fit with my MySQL database and so that I could customize my own login pages...

You can download it here: http://www.beanbug.net/vScripts.php

Hope this helps...

ADAM
User is offlineProfile CardPM
+Quote Post

ahmad_511

RE: Request A PHP Tutorial

17 Feb, 2008 - 03:45 PM
Post #7

MSX
Group Icon

Joined: 28 Apr, 2007
Posts: 509



Thanked: 36 times
Dream Kudos: 500
My Contributions
GUI application using PHP?

Go ahead,very interested.....
User is offlineProfile CardPM
+Quote Post

akozlik

RE: Request A PHP Tutorial

25 Feb, 2008 - 10:04 AM
Post #8

D.I.C Addict
Group Icon

Joined: 25 Feb, 2008
Posts: 774



Thanked: 38 times
Dream Kudos: 800
My Contributions
Hey, I know this post is over a month old, but I wanted to see if you were still having questions. Building basic user authentication systems is pretty easy. The best way to do that is to set up a mysql database for the username and password. When logging in, just take in the username and password from the form, and check it against the mysql database. If the login is successful you can set some session variables for use on the site. If you have pages that you want protected for members only, just do a session check. Remember that to access the variables you must start the session on each accessing page.


Authentication:

CODE

<?php

session_start();
if ($_SESSION['loggedin'] != "true") {
        header("Location: redirectPath.php");
}

?>


Just read up on session variables and you should be alright. Let me know if you need more clarification.

Andrew
User is offlineProfile CardPM
+Quote Post

CyberPetWorld

RE: Request A PHP Tutorial

3 Apr, 2008 - 08:35 PM
Post #9

New D.I.C Head
*

Joined: 1 Apr, 2008
Posts: 17


My Contributions
Hiya,


I am currently learning PHP and MySQL as I have a website (virtual pet community) in which I paid for a script then was left with no support so had to learn it myself. lol As it turns out I have become addicted to PHP and MySQL and love the flexibility and potential it offers my website.


My website has a config, global and header document which I believe contain global settings (hence the name lol).

There are a few projects I am working on in which I want to be able to indetify a user who is logged in.

For example ... I am creating message boards and want to be able to automatically identify the user instead of having to ask them to fill in their name. I would also like to be able to set up an online user list that displays the names of all those online. (I currently have an online list that is not ideal and I cant seem to change it)

I know that the members have a ID number and then that is somehow linked to the username.

I expect this may be too tricky to ask but would someone be able to teach me how to extract this information so I can use it on my message boards etc?

I think there is already settings for the $userid which I see is commonly used to idetify users but when ever I have tried using it I cant seem to get the same result.


Thanks you all
Justin






User is offlineProfile CardPM
+Quote Post

anshul_gupta2

RE: Request A PHP Tutorial

17 Apr, 2008 - 03:10 AM
Post #10

New D.I.C Head
*

Joined: 17 Apr, 2008
Posts: 2

QUOTE(max302 @ 16 Nov, 2007 - 06:55 PM) *

I think that PHP deserves this kind of topic too.

If you like to see a tutorial about anything PHP, just ask for it here.

i like to learn the php. i m just the begginner please provide me with some tutorials
User is offlineProfile CardPM
+Quote Post

no2pencil

RE: Request A PHP Tutorial

17 Apr, 2008 - 03:13 AM
Post #11

i R L33t Skiddie, k?
Group Icon

Joined: 10 May, 2007
Posts: 13,228



Thanked: 289 times
Dream Kudos: 2875
Expert In: Goofing Off

My Contributions
QUOTE(anshul_gupta2 @ 17 Apr, 2008 - 07:10 AM) *

i like to learn the php. i m just the begginner please provide me with some tutorials

There is an entire section of PHP Tutorials available under the Tutorials link. This topic is for specific tutorial requests.
User is online!Profile CardPM
+Quote Post

sfw

RE: Request A PHP Tutorial

29 Apr, 2008 - 02:28 PM
Post #12

New D.I.C Head
*

Joined: 24 Apr, 2008
Posts: 9


My Contributions
Hello, I would like to learn how to pass variables using sessions. i can't find a tutorial that makes sense to me. i'm very new at php.

i know how to get variables from forms but want to display an already defined variable on another page when the user pushes a submit button.

for example:
$fname ="Carlos";

//now, on another page i want to be able to show display the $fname variable.

I would like to learn more about sessions so feel free to go more into depth but i need to start at beginning.

thank you very much.
User is offlineProfile CardPM
+Quote Post

we_undertaker

RE: Request A PHP Tutorial

6 May, 2008 - 03:18 AM
Post #13

New D.I.C Head
*

Joined: 6 May, 2008
Posts: 44

anyone know any tutorial about upload video any file of video, to (database or server) and playback that video ,
i am just new in php ... plzz help me .. thank you so much
User is offlineProfile CardPM
+Quote Post

joeyadms

RE: Request A PHP Tutorial

6 May, 2008 - 03:44 PM
Post #14

D.I.C Head
Group Icon

Joined: 4 May, 2008
Posts: 175



Thanked: 9 times
Dream Kudos: 600
Expert In: PHP, Web Security

My Contributions
QUOTE(sfw @ 29 Apr, 2008 - 03:28 PM) *

Hello, I would like to learn how to pass variables using sessions. i can't find a tutorial that makes sense to me. i'm very new at php.

i know how to get variables from forms but want to display an already defined variable on another page when the user pushes a submit button.

for example:
$fname ="Carlos";

//now, on another page i want to be able to show display the $fname variable.

I would like to learn more about sessions so feel free to go more into depth but i need to start at beginning.

thank you very much.



I would very much like to make an article about this, I have another one dedicated to PHP Security as well, just waiting on the submissions of them to be fixed.
User is offlineProfile CardPM
+Quote Post

sirus

RE: Request A PHP Tutorial

13 May, 2008 - 05:37 AM
Post #15

New D.I.C Head
*

Joined: 13 May, 2008
Posts: 3

QUOTE(max302 @ 16 Nov, 2007 - 06:55 PM) *

I think that PHP deserves this kind of topic too.

If you like to see a tutorial about anything PHP, just ask for it here.


i know few thing about php but i want know more as i8s it possible to manipulate php with vb and if yes what is there real power of this language
User is offlineProfile CardPM
+Quote Post

midnightrose

RE: Request A PHP Tutorial

21 May, 2008 - 09:24 AM
Post #16

New D.I.C Head
*

Joined: 21 May, 2008
Posts: 1

I would like to start an advertising pixel site and i would like to create it from scrap does anyone know any tutorials for pixel advertising scripts thanks in advance
User is offlineProfile CardPM
+Quote Post

asadarnell

RE: Request A PHP Tutorial

5 Jun, 2008 - 12:09 PM
Post #17

D.I.C Head
**

Joined: 30 Aug, 2007
Posts: 108


My Contributions
I need a tutorial on how to make the results from a form go into a table. Like where someone can enter name, phone number, email, etc, and it go into a table with columns for each area. Seems simple, but not sure.

Thanks
User is offlineProfile CardPM
+Quote Post

akozlik

RE: Request A PHP Tutorial

6 Jun, 2008 - 08:46 AM
Post #18

D.I.C Addict
Group Icon

Joined: 25 Feb, 2008
Posts: 774



Thanked: 38 times
Dream Kudos: 800
My Contributions
QUOTE(asadarnell @ 5 Jun, 2008 - 04:09 PM) *

I need a tutorial on how to make the results from a form go into a table. Like where someone can enter name, phone number, email, etc, and it go into a table with columns for each area. Seems simple, but not sure.

Thanks


I'll write you one today. Look for it later this afternoon if it gets approved.
User is offlineProfile CardPM
+Quote Post

RodgerB

RE: Request A PHP Tutorial

4 Jul, 2008 - 04:05 PM
Post #19

D.I.C Lover
Group Icon

Joined: 21 Sep, 2007
Posts: 2,237



Thanked: 32 times
Dream Kudos: 2200
Expert In: Dot Net Technologies

My Contributions
LDAP Authentication against Active Directory, mac servers and Linux servers would be awesome. I don't know too much about LDAP, and I've been told there are heaps of hidden traps in AD because Microsoft were lame with their accordance to the specification.

Basically, I am trying to make a login script that asks the directory service (on whatever platform), to authenticate a username and password. smile.gif
User is offlineProfile CardPM
+Quote Post

nicemukesh.online@gmail.com

RE: Request A PHP Tutorial

12 Jul, 2008 - 01:21 AM
Post #20

New D.I.C Head
*

Joined: 12 Jul, 2008
Posts: 2


Hi i know in do this work pls contact me


nicemukesh.online@gmail.com

QUOTE(we_undertaker @ 6 May, 2008 - 04:18 AM) *

anyone know any tutorial about upload video any file of video, to (database or server) and playback that video ,
i am just new in php ... plzz help me .. thank you so much


User is offlineProfile CardPM
+Quote Post

5 Pages V  1 2 3 > » 
Fast ReplyReply to this topicStart new topic

Time is now: 11/7/09 10:55PM

Live PHP Help!

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter Fan Us On Facebook

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month