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 137
Search took 0.01 seconds.
Search: Posts Made By: maeltar
Forum: Absolute Beginners 06-13-2012, 03:45 AM
Replies: 2
Views: 852
Posted By maeltar
You need to be handling errors to get to the...

You need to be handling errors to get to the bottom of your problem...


$sql = mysql_query("UPDATE members SET email_activated='1' WHERE id='$id' AND password='$hashpass'");
$sql_doublecheck =...
Forum: Absolute Beginners 05-12-2012, 03:47 PM
Replies: 3
Views: 1,196
Posted By maeltar
I've used http://www.fpdf.org/ and had very good...

I've used http://www.fpdf.org/ and had very good results with it..
Forum: General 03-09-2012, 01:48 PM
Replies: 7
Views: 876
Posted By maeltar
I will post the SQL files relating to the...

I will post the SQL files relating to the database.

Maybe I missed that one ? :D

Post them and I'll have a look, but a few questions :

What are you trying to achieve ?
What are you having...
Forum: Member Introductions 02-04-2012, 11:25 AM
Replies: 3
Views: 482
Posted By maeltar
Welcome to the forum, you are new to php but post...

Welcome to the forum, you are new to php but post in Advanced... Start slowly...
Forum: Advanced PHP Programming 02-04-2012, 11:24 AM
Replies: 4
Views: 1,090
Posted By maeltar
For predictive autocomplete, you need to be...

For predictive autocomplete, you need to be looking at jQuery autocomplete... If as you are saying a complete newbie to php, you may be biting off more than you can chew for a first hack. However,...
Forum: General 01-24-2012, 11:10 AM
Replies: 2
Views: 715
Posted By maeltar
We all use different books, as we all learn in...

We all use different books, as we all learn in our own way.. There are some that can be recommended, but just get the ones you feel comeformatable with and find authors that write the way you need...
Forum: Advanced PHP Programming 01-14-2012, 03:50 AM
Replies: 5
Views: 1,086
Posted By maeltar
OOP vs Procedural

What are the advantages of using oop over procedural ?

Take the following function, and if I were to make this into a class (which I have no idea how to yet!) what would I gain ?

This is to find...
Forum: Javascript, AJAX, E4X 01-13-2012, 02:22 PM
Replies: 5
Views: 806
Posted By maeltar
I picked up...

I picked up :

http://www.amazon.co.uk/JQuery-Visual-QuickStart-Guide-Guides/dp/0321647491/ref=sr_1_3?s=books&ie=UTF8&qid=1326464480&sr=1-3

Not got the best of reviews but it is good enough for my...
Forum: MySQL & Databases 01-11-2012, 07:40 AM
Replies: 3
Views: 839
Posted By maeltar
Also maybe worth using an echo on your sql...

Also maybe worth using an echo on your sql statement, copy and paste it into your MySQL console see what error that kicks out..
Forum: MySQL & Databases 01-11-2012, 07:39 AM
Replies: 3
Views: 839
Posted By maeltar
Try : if(!$result){ echo "Error with update :...

Try :



if(!$result){
echo "Error with update : " . mysql_error();
die();
}else{
echo "Successful";
echo "<BR>";
Forum: Javascript, AJAX, E4X 01-09-2012, 07:45 AM
Replies: 5
Views: 806
Posted By maeltar
jQuery is amazingly simple to learn and use, and...

jQuery is amazingly simple to learn and use, and once you start using it you will see so many applications for it on your sites. I've been using it for some time and still get a buzz when I do what...
Forum: Absolute Beginners 01-06-2012, 07:35 AM
Replies: 3
Views: 1,504
Posted By maeltar
Anytime :D

Anytime :D
Forum: Absolute Beginners 01-05-2012, 08:15 AM
Replies: 3
Views: 1,504
Posted By maeltar
Have a look...

Have a look here..

http://php.net/manual/en/function.htmlentities.php
Forum: General 12-04-2011, 01:35 PM
Replies: 17
Views: 935
Posted By maeltar
I'd suggest getting a small VPS, you can get them...

I'd suggest getting a small VPS, you can get them form £10 a month, just configure it yourself, it's quite easy.. Or I can help you out with mail accounts and give you unlimited emails, no...
Forum: General 12-03-2011, 03:52 PM
Replies: 17
Views: 935
Posted By maeltar
So thats 5.4 seconds to 10 recipients, you are...

So thats 5.4 seconds to 10 recipients, you are sending to 60, have you timed it ?
Forum: General 12-03-2011, 03:49 PM
Replies: 17
Views: 935
Posted By maeltar
Just done a test on my server sending to 10...

Just done a test on my server sending to 10 randomly generated recipients, so there is no spam panic, I created a catch all account on my server...

Here are the results I got :

SMTP -> FROM...
Forum: General 12-03-2011, 03:18 PM
Replies: 17
Views: 935
Posted By maeltar
For the debugging use : $mail->SMTPDebug = 2; 0...

For the debugging use :
$mail->SMTPDebug = 2;

0 = No output
1 = Minimal
2 = verbose
Forum: General 12-03-2011, 03:14 PM
Replies: 17
Views: 935
Posted By maeltar
It will always take a few seconds per mail to...

It will always take a few seconds per mail to send as the system has got to do a lookup on each domain, then send.. Also I'm not sure if it logs in with each mail turn on debuggind and watch what is...
Forum: General 11-22-2011, 07:43 AM
Replies: 6
Views: 772
Posted By maeltar
I use Swift Mailer, for my mailing needs which...

I use Swift Mailer, for my mailing needs which can be quite demanding, and never had a problem with it..

When I'm doing mailing I tend to run the script from a cron job so it doesn't impact the...
Forum: General 11-14-2011, 04:51 PM
Replies: 2
Views: 376
Posted By maeltar
Can you put the css file in as well please

Can you put the css file in as well please
Forum: Advanced PHP Programming 09-23-2011, 01:44 PM
Replies: 4
Views: 755
Posted By maeltar
This might help you getting dates between 2 dates...

This might help you getting dates between 2 dates from mysql..

http://stackoverflow.com/questions/510012/get-a-list-of-dates-between-two-dates
Forum: General 09-05-2011, 10:24 AM
Replies: 8
Views: 609
Posted By maeltar
Welcome to the forums, they are a little quite at...

Welcome to the forums, they are a little quite at the moment, but am sure they will start getting busy once again.
Forum: Feedback 08-17-2011, 06:14 PM
Replies: 9
Views: 811
Posted By maeltar
I see wildhoney is here now, maybe will pickup...

I see wildhoney is here now, maybe will pickup this thread and see some offer's of help :D
Forum: General 08-15-2011, 06:53 AM
Replies: 15
Views: 11,620
Posted By maeltar
You could always use the easy way out and create...

You could always use the easy way out and create a custom 404 doc that has a redirect in it.
Forum: General 08-03-2011, 04:17 PM
Replies: 5
Views: 651
Posted By maeltar
Now if you "invert" the selection using the...

Now if you "invert" the selection using the logical NOT symbol !


<?php

$up = 2;
$app = 2;
$dep = 2;
$sold = 2;
Showing results 1 to 25 of 137

 

All times are GMT. The time now is 07:32 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