Home
Forums
Articles
Glossary
Awards
Register
Rules
Members
Search
Today's Posts
Mark Forums Read
Account Login
User Name
Password
Remember Me?
Latest Articles
The basic usage of PHPTAL, a XML/XHTML template library for PHP
by
awuehr
on
11-10-2008
in
Tips & Tricks
Vulnerable methods and the areas they are commonly trusted in.
by
Village Idiot
on
11-04-2008
in
Classes & Objects
Simple way to protect a form from bot
by
codefreek
on
10-23-2008
in
Basic
The Basics On: How Session Stealing Works
by
wiifanatic
on
09-12-2008
in
Security & Permissions
How to keep your forms from double posting data
by
drewbee
on
07-03-2008
in
Tips & Tricks
IRC Channel
Join the friendly bunch on IRC...
(
#TalkPHP on Freenode
)
...Also available via a
web interface
.
See
this thread
for information on the TalkPHP Free Hugs Initiative™.
Subject to availability.
Associates
Wired Flame
ClientExec
Handy PHP
PHP Kitchen
PHP Tutorials
Insane Visions
Associates
TalkPHP
>
Search Forums
»
Search Results
Page 1 of 3
1
2
3
>
Page 1 of 3
1
2
3
>
Showing results 1 to 25 of 53
Search took
0.01
seconds.
Search:
Posts Made By:
Sirupsen
Forum:
Absolute Beginners
11-05-2009, 05:59 PM
Replies:
4
My first PHP project
Views:
1,444
Posted By
Sirupsen
You can probably, do it entirely with PHP. Having...
You can probably, do it entirely with PHP. Having a button you click which creates a row in your database like:
[ID: 1][Start: 1257443698][End: /Empty/]
When you click the button again, it would...
Forum:
Member Introductions
10-22-2009, 08:55 PM
Replies:
1
Hey
Views:
571
Posted By
Sirupsen
Welcome! :D OOP is just trying and experimenting...
Welcome! :D
OOP is just trying and experimenting - then eventually you come to a point where you'll begin seeing how awesome OOP really is. :)
Forum:
General
10-22-2009, 07:45 PM
Replies:
0
Static and Unstatic stuff
Views:
590
Posted By
Sirupsen
Static and Unstatic stuff
Hello there Talkphp'ers!
I'm currently in the process of making my own "design" or "framework", mostly to expand my knowledge with patterns. But also to try and solve some problems which comes on...
Forum:
The Lounge
10-13-2009, 12:51 PM
Replies:
15
linux distro you think is the best for a programmer ?
Views:
1,056
Posted By
Sirupsen
I used Fedora first, and had a lot of issues. I...
I used Fedora first, and had a lot of issues. I tried Ubuntu, and all these things just seemed to work much better, also I like Aptitude a lot better than Yum. So currently I work on Ubuntu, however...
Forum:
Advanced PHP Programming
09-25-2009, 12:13 PM
Replies:
11
Your Naming Conventions
Views:
930
Posted By
Sirupsen
Classes: CamelCase (But their in 99/100 cases one...
Classes: CamelCase (But their in 99/100 cases one word)
Functions: CamelCase
Strings: small_letters_with_underscores
Constants: CAPS
Forum:
Absolute Beginners
09-18-2009, 11:21 AM
Replies:
12
Any thoughts on PHP_ED (IDE) from Nusphere?
Views:
1,053
Posted By
Sirupsen
Agreed! :)
Agreed! :)
Forum:
Absolute Beginners
09-17-2009, 07:59 PM
Replies:
12
Any thoughts on PHP_ED (IDE) from Nusphere?
Views:
1,053
Posted By
Sirupsen
I find IDE's overwhelming for PHP, and not...
I find IDE's overwhelming for PHP, and not needed.
When I used Windows I really struggled to find a decent simple editor. I didn't need much else than; navigation, customizeability as well as...
Forum:
General
09-17-2009, 04:07 PM
Replies:
9
Google Chrome Extensions.
Views:
807
Posted By
Sirupsen
AdSweep is an effective adblocker. And Xmarks is...
AdSweep is an effective adblocker. And Xmarks is syncronizing of bookmarks, which works on all the biggest browsers. :) The Chrome extension is rather new. (Alpha stage)
I recommend them both. :)
Forum:
General
09-17-2009, 02:08 PM
Replies:
9
Google Chrome Extensions.
Views:
807
Posted By
Sirupsen
I use the nightly builds on my Linux system. And...
I use the nightly builds on my Linux system. And I carry it portably on my USB-pen, which I always carry in my keychain. Currently I only use AdSweep and Xmarks as extensions for Chrome (Chromium on...
Forum:
General
09-16-2009, 07:30 PM
Replies:
0
Handling errors
Views:
584
Posted By
Sirupsen
Handling errors
I'm curious how you guys handle errors (not syntax errors, but self defined errors, like; file size too big, file doesn't exist, user doesn't exist .. ).
Do you use exceptions, and how do you use...
Forum:
General
08-18-2009, 06:34 PM
Replies:
10
PHP Template
Views:
1,169
Posted By
Sirupsen
Thanks a lot! :D
Thanks a lot! :D
Forum:
General
08-18-2009, 01:19 PM
Replies:
10
PHP Template
Views:
1,169
Posted By
Sirupsen
I made a rather simple "Framework" recently, as...
I made a rather simple "Framework" recently, as it's really good practise, this is my finished Template class...
Forum:
The Lounge
08-14-2009, 11:58 AM
Replies:
7
What tools to do you use to mange time/workflow
Views:
945
Posted By
Sirupsen
For todo I personally use Google Tasks, it's fast...
For todo I personally use Google Tasks, it's fast stable and super simple and works well on my iPhone. I use the mobile interface on my desktop as I cba. to open my mail each time I need to add a...
Forum:
General
08-12-2009, 02:14 PM
Replies:
10
PHP Template
Views:
1,169
Posted By
Sirupsen
Thanks a lot! :) Would it be a bad habbit to use...
Thanks a lot! :)
Would it be a bad habbit to use shortcuts here:
<?php foreach( $posts as $post ): ?>
<strong><?=$post['header']?></strong>
<p>
<?=$post['body']?>
</p>
<?php endforeach; ?>
Forum:
General
08-12-2009, 01:37 PM
Replies:
10
PHP Template
Views:
1,169
Posted By
Sirupsen
I'm looking for a short introduction, or someone...
I'm looking for a short introduction, or someone to point me in the right direction of using PHP in a good way for templating. Since I'll learn a lot more from that, than I will by just using Smarty...
Forum:
General
08-12-2009, 11:37 AM
Replies:
10
PHP Template
Views:
1,169
Posted By
Sirupsen
PHP Template
Greetings! I am currently making a few projects, but I am very worried about how I should do my templating system so I do not at some point regret how I did it, and want to recode it!
Basically, I...
Forum:
General
06-26-2009, 04:12 PM
Replies:
7
what SQL manager do you use?
Views:
886
Posted By
Sirupsen
Mmh, I have got myself used to the online...
Mmh, I have got myself used to the online SQLBuddy. (http://www.sqlbuddy.com/)
Forum:
Tips & Tricks
06-25-2009, 06:36 PM
Replies:
31
PHP Perfomance Tips by the Beloved Google
Views:
2,186
Posted By
Sirupsen
Ah, alright. I use Textmate on my mac too with...
Ah, alright. I use Textmate on my mac too with same scheme, and SublimeText on my PC. However, still looking for a free solution with a proper skin. I might actually end up buying SublimeText for...
Forum:
Tips & Tricks
06-25-2009, 06:03 PM
Replies:
31
PHP Perfomance Tips by the Beloved Google
Views:
2,186
Posted By
Sirupsen
Which editor do you use? :)
Which editor do you use? :)
Forum:
Tips & Tricks
06-25-2009, 05:24 PM
Replies:
31
PHP Perfomance Tips by the Beloved Google
Views:
2,186
Posted By
Sirupsen
Pretty much agreeing with Salethe. :D I use...
Pretty much agreeing with Salethe. :D
I use theese colors btw.:
http://www.sirup.netau.net/2009-06-25_1922.png
Monokai for the win. :)
Forum:
General
06-22-2009, 01:21 PM
Replies:
18
Do you Code from scratch or use framework ?
Views:
889
Posted By
Sirupsen
Still kind of in the deep learning progress of...
Still kind of in the deep learning progress of PHP, and therefore I decided to not use a framework. I want to know how everything works. That's a good learning process for me at least. :)
Forum:
General
06-20-2009, 05:48 PM
Replies:
6
Fetch Favicon and page title
Views:
1,846
Posted By
Sirupsen
It's for getting the favicon from a webpage (no...
It's for getting the favicon from a webpage (no matter where it's located, no matter which page there so www.youtube.com/d8Ud2 works as good as youtube.com), remote uploading this favicon to my own...
Forum:
General
06-20-2009, 02:12 PM
Replies:
6
Fetch Favicon and page title
Views:
1,846
Posted By
Sirupsen
True actually! Thanks Wildhoney. :) It'll be a...
True actually! Thanks Wildhoney. :)
It'll be a little harder when someone requests to upload a new twitter.com favicon, I should somehow check if there's already a: twitter.com.ico file in that dir....
Forum:
General
06-20-2009, 12:55 PM
Replies:
6
Fetch Favicon and page title
Views:
1,846
Posted By
Sirupsen
Hmm, I found this function on the intrawebs...
Hmm, I found this function on the intrawebs actually to get the url of the favicon: (As I'm pretty bad with regular expressions as well)
function get_ico_url()
{
if ($this->ico_url...
Forum:
General
06-20-2009, 08:24 AM
Replies:
6
Fetch Favicon and page title
Views:
1,846
Posted By
Sirupsen
Fetch Favicon and page title
How could I make a script where a user types in an url to for example his youtube profile. When the user clicks "ok", it fetches the favicon and the page titles which it inserts into the...
Showing results 1 to 25 of 53
Page 1 of 3
1
2
3
>
All times are GMT. The time now is
12:02 AM
.
Contact Us
-
TalkPHP - PHP Community
-
Archive
-
Top
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by
vBSEO
3.1.0
Inactive Reminders By
Icora
Web Design