TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble 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
Associates
CSS Tutorials
Showing results 1 to 25 of 39
Search took 0.00 seconds.
Search: Posts Made By: tego10122
Forum: Advanced PHP Programming 12-27-2010, 03:44 AM
Replies: 1
Views: 740
Posted By tego10122
Template Class Issue

Hello,

I'm having a issue with my template class. I need to output a while statement from user.functions.php but when I do the following.


$template = new...
Forum: General 12-30-2009, 02:27 AM
Replies: 5
Views: 587
Posted By tego10122
he first question I would ask is, to what do you...

he first question I would ask is, to what do you want to redirect exactly ?
www.domain.com/jay/admin/viewUsers -> www.domain.com/jay/admin/viewUsers.php
Forum: General 12-29-2009, 09:53 PM
Replies: 5
Views: 587
Posted By tego10122
Mod Rewrite Question

RewriteEngine On
RewriteBase /jay/admin

RewriteRule ^(.*)$ $1.php


I need it to basically do the following

when a user goes to www.domain.com/jay/admin/viewUsers it will call viewUsers.php
Forum: Advanced PHP Programming 12-11-2009, 12:04 AM
Replies: 2
Views: 751
Posted By tego10122
Paypal and My site Need Help!

question, how would I handle Product->Paypal->Purchase->Mysql_add_credit->update_table


So, a customer buys "Credits/Points" he'd go to the website, login. Click Buy Credits, then hed be directed to...
Forum: General 05-19-2009, 06:23 PM
Replies: 1
Views: 472
Posted By tego10122
Direct Access Help

I need to find out how to define, if the browser is on login.php so (http://domain.com/login.php) If so then render and error ('no direct acess -> redirect(/); , but if login.php was fetched by...
Forum: Show Off 03-24-2009, 07:38 PM
Replies: 97
Views: 3,913
Posted By tego10122
Can i get a alpha code?

Can i get a alpha code?
Forum: Show Off 03-13-2009, 05:21 PM
Replies: 8
Views: 1,534
Posted By tego10122
im thinking about using the frame work , do you...

im thinking about using the frame work , do you have a tut on a login form?
Forum: Advanced PHP Programming 03-03-2009, 05:33 PM
Replies: 2
Views: 737
Posted By tego10122
Help making this a class

<?php
// Smart Image Resizer 1.4.1
// Resizes images, intelligently sharpens, crops based on width:height ratios, color fills
// transparent GIFs and PNGs, and caches variations for optimal...
Forum: Advanced PHP Programming 02-12-2009, 04:12 AM
Replies: 8
Views: 3,387
Posted By tego10122
Um , well nothing really I just like to have it...

Um , well nothing really I just like to have it so I have my own encryption method hopefully making it harder to crack.
Forum: Advanced PHP Programming 02-11-2009, 07:09 PM
Replies: 8
Views: 3,387
Posted By tego10122
Creating your own encryption method

Hello , How could I compile a class/function to create my own encryption method.

eg:
$text = 'milkdud22'
output: my25Ql$jk
Forum: Advanced PHP Programming 01-11-2009, 09:29 AM
Replies: 20
Views: 1,780
Posted By tego10122
How would I cache it?

How would I cache it?
Forum: Advanced PHP Programming 01-05-2009, 11:29 AM
Replies: 0
Views: 696
Posted By tego10122
Translate

I was wondering , I am using Smarty on one of my projects to make it an easy to switch/edit themes. Now, is there a engine/script out there that I can refer to for translation? Like for instance if...
Forum: Advanced PHP Programming 01-02-2009, 09:47 PM
Replies: 20
Views: 1,780
Posted By tego10122
works pretty well, but wouldn't that be a hazard...

works pretty well, but wouldn't that be a hazard because anyone could use my website to generate text and kill my bandwith..
Forum: Advanced PHP Programming 01-01-2009, 08:44 PM
Replies: 20
Views: 1,780
Posted By tego10122
I see what you are saying, but im basically...

I see what you are saying, but im basically trying to use this string to generate text into image , not to watermark images.
Forum: Advanced PHP Programming 01-01-2009, 08:42 PM
Replies: 20
Views: 1,780
Posted By tego10122
Yes header('Content-type:...

Yes


header('Content-type: image/jpeg');
$image = imagecreate(200,25);
imagecolorallocate($image, 255, 255, 255);

$fontColor = imagecolorallocate($image, 0, 0, 0);

$startX = 15;
Forum: Advanced PHP Programming 12-30-2008, 06:20 PM
Replies: 20
Views: 1,780
Posted By tego10122
* Warning: Cannot modify header information -...

* Warning: Cannot modify header information - headers already sent by (output started at C:\www\page.php:3) in C:\www\lib\clasess.php on line 64
�����JFIF���������>CREATOR: gd-jpeg v1.0...
Forum: Advanced PHP Programming 12-30-2008, 07:41 AM
Replies: 20
Views: 1,780
Posted By tego10122
Still not working, im just trying to make a...

Still not working, im just trying to make a simple class that will render the variable into an image $image->text('email@email.com'); -> gd image

Heres my new code

class image
{
public...
Forum: Advanced PHP Programming 12-26-2008, 07:39 PM
Replies: 20
Views: 1,780
Posted By tego10122
No , the only thing I can think of is...

No , the only thing I can think of is include('clasess.php'); that has the image class which is sending the header.
Forum: Advanced PHP Programming 12-26-2008, 06:41 PM
Replies: 20
Views: 1,780
Posted By tego10122
class image { public function...

class image
{
public function text($variable)
{
ob_start();
$image = imagecreate(200,25);

imagecolorallocate($image, 255, 255, 255);

...
Forum: Advanced PHP Programming 12-26-2008, 10:48 AM
Replies: 20
Views: 1,780
Posted By tego10122
ARRGH! GD!!!!!!!!! help..

class image
{
public function text($variable)
{
$image = imagecreate(200,25);

imagecolorallocate($image, 255, 255, 255);

$fontColor = imagecolorallocate($image, 0, 0, 0);
Forum: Advanced PHP Programming 12-17-2008, 09:24 AM
Replies: 4
Views: 792
Posted By tego10122
From String to function

<?=$member->contact('email'); ?>
<?=$member->contact('msn'); ?>
When I use the code above to get information for the user profile.

it goes to this function

class member
{
public function...
Forum: General 12-17-2008, 08:48 AM
Replies: 5
Views: 623
Posted By tego10122
Is there any quick way I can do this?, <?php...

Is there any quick way I can do this?, <?php imagefttext('$image', '$textvar'); ?>
Forum: General 12-16-2008, 08:23 AM
Replies: 5
Views: 623
Posted By tego10122
Text to Image

Hello, I was wondering. I wasnt sure, if I should of used the phpGD method to make "tego10122@gmail.com" or any text into a image like facebook does with the email...
Forum: General 12-14-2008, 10:17 AM
Replies: 8
Views: 975
Posted By tego10122
Stupid OOP question

How would I make a class and object for the following string.

$databse->connect('host','username','password');
$databse->select(dbname);

Sorry for the hassel.
Forum: General 11-10-2008, 07:00 PM
Replies: 1
Views: 451
Posted By tego10122
ReWrite URLS ?

Im having a problem learning how to route and call pages , for instance if i go to Register a Domain, Find Hosting and Create a Website | Domain.com (http://www.domain.com/home) itll call...
Showing results 1 to 25 of 39

 

All times are GMT. The time now is 10:55 AM.

 
     

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