Welcome Guest, Not a member yet? Register   Sign In
where is the ADVANCE video tutorials?
#1

[eluser]vps4[/eluser]
the 2 tutorials on CI homepage are too easy...
I need advance video tutorials.
I can't understand the URI model document.
for example: I don't know how to make the URI system like wordpress...like
http://my.com/post-name/

Is there any good guy give me the videos?
thank you very much.
#2

[eluser]Pascal Kriete[/eluser]
Well, I can't point you at a tutorial that does what you want (but I'll get to that in a second). A few community members have some excellent tutorials though. Namely Elliot and Derek. Michael also had a very amusing drunken one, but it bit the dust along with the other good stuff on his blog.

Now on to your problem. What you want to do is give each blog entry another field called 'permalink' or something like that. That field will contain the url title as you would have it in your url (flying-aardvark-extinct for example).

Then you create a controller, say blog, with a function entry. Now your url becomes example.com/blog/entry/flying-aardvark-extinct . The third segment will be passed to your function as an argument.

Code:
function entry ($permalink = '')
{
    // Grab post with given permalink from db and show it
}

Having /entry in there seems rather redudant, so we'll define a route (application/config/routes.php) to get rid of that:
Code:
$route['blog/(:any)'] = "blog/entry/$1";
Now www.example.com/blog/flying-aardvark-extinct should show your post about the extinct flying anteaters.

Hope that clears things up for you. Feel free to ask questions as you go along. The community and user-guide are very useful when you're stuck on a problem.

Welcome to CodeIgniter.
#3

[eluser]Chris Williams[/eluser]
Those are great links. Thanks!
#4

[eluser]Michael Wales[/eluser]
If someone would search Revver for 'CodeIgniter' they should be able to find my drunken tut...

I can't do so from the desert - firewall blocks the site.
#5

[eluser]Référencement Google[/eluser]
Hey Chris, have a look at my CI directory: www.codeigniterdirectory.com
#6

[eluser]Pascal Kriete[/eluser]
[quote author="Michael Wales" date="1211706271"]If someone would search Revver for 'CodeIgniter' they should be able to find my drunken tut...[/quote]

Found it. [link]
#7

[eluser]Unknown[/eluser]
[quote author="vps4" date="1211633376"]the 2 tutorials on CI homepage are too easy...
I need advance video tutorials.
I can't understand the URI model document.
for example: I don't know how to make the URI system like wordpress...like
http://my.com/post-name/

Is there any good guy give me the videos?
thank you very much.[/quote]


please find how to edit videos here
#8

[eluser]jairoh_[/eluser]
do you have a video tutorial for paypal library? (ipn)
#9

[eluser]TheFuzzy0ne[/eluser]
There's a video tutorial here: http://net.tutsplus.com/tutorials/php/us...-with-php/

And another one here: http://www.youtube.com/watch?v=t_7GA1BZXPs

They have nothing to do with CodeIgniter, but they might help you. The bottom line is: You're going to have to look into IPN and learn how it works. There is no magic library that's going to make everything magically fall into place. You need to understand the IPN process, and then apply that to your Web site.




Theme © iAndrew 2016 - Forum software by © MyBB