Author Topic: Tutorial requests - Have a suggestion for a tutorial?  (Read 8853 times)

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: +0/-0
    • View Profile
Tutorial requests - Have a suggestion for a tutorial?
« on: July 17, 2004, 11:44:53 AM »
Perhaps a Topic in this category for tutorial requests?

I think that would be a nice idea  :D

[Edit] I changed the title and stickied your post ~ Miles

Acecool

  • Regular Member
  • **
  • Posts: 73
  • Karma: +0/-0
    • View Profile
    • PHP programmers forum
(No subject)
« Reply #1 on: July 18, 2004, 08:55:01 AM »
What tuts do you want to see?

Somone deleted about 20 tuts I posted on this forum, you can view them:

http://www.acecoolco.com/tutorials.php

I will be writing new ones soon, first priority is finishing the new cms version and uploading it to the site.

You can request tuts on my site or here :-)

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: +0/-0
    • View Profile
(No subject)
« Reply #2 on: July 18, 2004, 11:04:14 AM »
Acecool, Thanks  :D

I'll explain....

*member table in the database.
*hyperlink displays username once logged in.
*click the link, takes you to user profile.

I'm unsure of exactly how to use the url with php.  I have some ideas in my head at the moment and I'll be trying a few things out in the next day or so.

Will post whether i figured it out then (work tomorrow :( )

Acecool

  • Regular Member
  • **
  • Posts: 73
  • Karma: +0/-0
    • View Profile
    • PHP programmers forum
(No subject)
« Reply #3 on: July 18, 2004, 01:13:45 PM »
<a href="./blah.php?id=1">text</a>

PHP Code: [Select]
<?php
if ($_GET['id'] == "1") {
    
// code to redirect
}
else
{
   
// do something else
}
?>

you dont need the else if you dont want it.

is that what you mean?

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: +0/-0
    • View Profile
(No subject)
« Reply #4 on: July 20, 2004, 11:49:45 AM »
Yes I think it is :)

Thx Ace:)

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: +0/-0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #5 on: July 20, 2004, 08:39:09 PM »
I actually have the question to this in the beginners forum.  I ended up working out a solution.

Many thanks to lig and Acecool for $_GETting my brain cells working in the right direction <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="" /><!-- s;) -->

Displaying query results using hyperlink

alittler

  • New Member
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #6 on: February 02, 2008, 01:54:04 PM »
How about a tut about creating custome sign on/ profile pages.  Yknow, username, password, email and whatever else stuff you want added to a page

Zyppora

  • Global Moderator
  • Senior Member
  • *****
  • Posts: 1401
  • Karma: +0/-0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #7 on: February 25, 2008, 04:16:49 AM »
Quote from: "alittler"
How about a tut about creating custome sign on/ profile pages.  Yknow, username, password, email and whatever else stuff you want added to a page

viewtopic.php?f=14&t=8432
This should get your rolling.
HAVE YOU TRIED DEBUGGING? Example code in this reply deliberately contains BUGS. PHP forum for beginners.

LimeX

  • New Member
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #8 on: May 08, 2011, 03:25:51 AM »
How about a tutorial on how to display contents of a MySQL table? :)

MattNow14

  • New Member
  • *
  • Posts: 14
  • Karma: +0/-0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #9 on: June 09, 2011, 06:25:43 PM »
Could we get a tutorial on how to create a very basic CMS , when I watch them on Youtube they confuse me with all the code,and also what all the code means so we can edit it to fit what we want.