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

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: 0
    • View Profile
Tutorial requests - Have a suggestion for a tutorial?
« on: July 17, 2004, 12:44:53 PM »
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
    • View Profile
(No subject)
« Reply #1 on: July 18, 2004, 09: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
    • View Profile
(No subject)
« Reply #2 on: July 18, 2004, 12:04:14 PM »
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
    • View Profile
(No subject)
« Reply #3 on: July 18, 2004, 02: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
    • View Profile
(No subject)
« Reply #4 on: July 20, 2004, 12:49:45 PM »
Yes I think it is :)

Thx Ace:)

NightOwl

  • New Member
  • *
  • Posts: 17
  • Karma: 0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #5 on: July 20, 2004, 09: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
    • 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
    • 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
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #8 on: May 08, 2011, 04:25:51 AM »
How about a tutorial on how to display contents of a MySQL table? :)

MattB

  • New Member
  • *
  • Posts: 19
  • Karma: 0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #9 on: June 09, 2011, 07: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.

MrMaverick

  • Regular Member
  • **
  • Posts: 28
  • Karma: 1
    • View Profile
    • Wunder's Service
Tutorial Request
« Reply #10 on: April 07, 2012, 08:56:26 PM »
I would like to request a procedural tutorial as to how in PHP you would:

  • Properly Sanitize variables to insert into a MySQL database.
  • Formulate MySQL Queries in different situations (i.e. (SELECT, INSERT, UPDATE, DELETE)
  • Secure Connection Scripts for MySQL.


PhpLearner

  • Regular Member
  • **
  • Posts: 57
  • Karma: 0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #11 on: July 07, 2012, 11:59:15 AM »
Please make a register that actually works. Mine for some reason doesn't work.

Andrew

  • iPhone Application & Web Developer
  • Expert PHP Helper
  • Senior Member
  • *****
  • Posts: 339
  • Karma: 9
  • PHP, MySQL, HTML, and CSS are my playground
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #12 on: October 17, 2012, 07:09:53 PM »
What do you mean by register?
You cannot solve a puzzle if you don't have all the pieces.
Please + my karma if I helped you. <-- over there under my picture.

SaintAnthony

  • New Member
  • *
  • Posts: 20
  • Karma: 0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #13 on: October 29, 2012, 05:46:17 PM »
I would like to learn more about using cookies.  The main thing I would like to accomplish is a most popular search section on our site. 

Thanks!

MammothInc

  • New Member
  • *
  • Posts: 2
  • Karma: 0
    • View Profile
Re: Tutorial requests - Have a suggestion for a tutorial?
« Reply #14 on: December 25, 2012, 04:50:18 PM »
Photo upload tutorial would be good please! :)