Showing results 1 to 30 of 30
Search took 0.01 seconds; generated 1 minute(s) ago.
Posts Made By: chmazur
Forum: PHP Nov 12th, 2007
Replies: 4
Views: 683
Posted By chmazur
Re: PHP Classes

Thanks World_weapon! Your post is very clear.
In my case, when I started to use OOP in PHP, I saw that my productivity increased notably, and components can be easily adapted and modified by my...
Forum: PHP Nov 11th, 2007
Replies: 4
Views: 683
Posted By chmazur
Question PHP Classes

I would like to know why in the majority of the examples showed in the forum, nobody uses classes in PHP. Is it a chance? Or really, is nobody using them? Do you know classes advantages?

ch.-
Forum: PHP Nov 8th, 2007
Replies: 6
Views: 4,133
Posted By chmazur
Re: Tearing my hair out over PHP mysql update script

Did you check the user/passw/database and privileges on your MySQL 5.0 ?
Forum: PHP Nov 8th, 2007
Replies: 9
Views: 3,578
Posted By chmazur
Re: PHP and MySQL Stored Procedure Exec Problem

On your store procedure.
...
...
where indexes.LanguageID = languages.LanguageID and languages.LanguageID = Language
...
...

what is Language? Did you try with $Languaje (?)

ch.-
Forum: PHP Nov 8th, 2007
Replies: 3
Views: 1,304
Posted By chmazur
Re: doc root in windows virtual hosting

Can you copy the 'config.inc.php' script??

ch.-
Forum: PHP Nov 8th, 2007
Replies: 8
Views: 887
Posted By chmazur
Re: PHP Parse Error

I think that the line 46 is on file news.php, or previewnews.php (after being included on site_defenitions.inc ).

On the other hand, your have an mistake with your Analitycs script.
It must be just...
Forum: PHP Nov 7th, 2007
Replies: 8
Views: 887
Posted By chmazur
Re: PHP Parse Error

Can you show your script?
Probably you must write ';' instead of ':'

ch.-
Forum: PHP Nov 6th, 2007
Replies: 9
Views: 1,107
Posted By chmazur
Re: Hyerlink from Mysql

Try fatihpiristine's post, or this:

<td><a href="<?=$row_schedule['photos']?>"><?=$row_schedule['photos']?> </a></td>


ch.-
Forum: PHP Nov 5th, 2007
Replies: 2
Views: 454
Posted By chmazur
Re: help me

Hi Dbayo.
Did you visit Google. You can find a lot of code there.
http://www.google.com/search?hl=es&q=insert+an+images+into+MySql+database&btnG=Buscar+con+Google&lr=

ch.-
Forum: PHP Nov 5th, 2007
Replies: 11
Views: 1,073
Posted By chmazur
Re: PHP problem!

Did you check the schema privileges assigned to the user 'national_twc' from 'localhost' and the access avaible to the database 'national_test'?
If it possible, you can use the 'root' user to test...
Forum: PHP Nov 5th, 2007
Replies: 6
Views: 1,037
Posted By chmazur
Re: MySQL vs. SQL Server

ops....
I`m sorry!!!

Mysql is a good option.

:)
Forum: PHP Nov 5th, 2007
Replies: 6
Views: 824
Posted By chmazur
Re: url splitting

Did you test my script?
You can obtain all the blocks that you want. With or wihtout some block.

ch.-
Forum: PHP Nov 5th, 2007
Replies: 6
Views: 824
Posted By chmazur
Re: url splitting

<?php
$urloriginal = "http://www.mazur.com.ar/galeria/index.php?id=25";
echo "URL original: " . $urloriginal . "<br><br>\n";
$urloriginal = eregi_replace("http://", "", $urloriginal);
echo "URL...
Forum: PHP Nov 5th, 2007
Replies: 12
Views: 1,248
Posted By chmazur
Re: Problem Setting up PHP/SQL Server dev enviroment

http://ar.php.net/get/php-5.2.4-win32-installer.msi/from/a/mirror

Choose the mirror from you will download the file.

http://ar2.php.net/manual/es/install.windows.php
or try with 'install php on...
Forum: PHP Nov 4th, 2007
Replies: 6
Views: 1,037
Posted By chmazur
Re: MySQL vs. SQL Server

http://www.daniweb.com/forums/thread57.html

;)

ch.-
Forum: PHP Nov 4th, 2007
Replies: 12
Views: 1,248
Posted By chmazur
Re: Problem Setting up PHP/SQL Server dev enviroment

Check if the httpd.conf file content the follow lines:

PHPIniDir "C:/Archivos de programa/PHP/"
LoadModule php5_module "C:/Archivos de programa/PHP/php5apache2_2.dll"

How did you install PHP on...
Forum: PHP Nov 4th, 2007
Replies: 12
Views: 1,248
Posted By chmazur
Re: Problem Setting up PHP/SQL Server dev enviroment

Hi, Naturegirrrl.
Probably you have two web servers on your machine. Apache and IIS (Internet Information Server).
You have to decide which web server you´ll use.
If you don´t need IIS, stop the...
Forum: PHP Nov 4th, 2007
Replies: 6
Views: 1,652
Posted By chmazur
Re: Lyrics Script - Help me creating a submit.php to sumbit new lyrics

Hi Smartness! You are looking for someone who makes the work? or you want learn how to do the submit script?
Can you share and explain the script that you have tried to create? Then we can help you...
Forum: PHP Nov 4th, 2007
Replies: 12
Views: 1,248
Posted By chmazur
Re: Problem Setting up PHP/SQL Server dev enviroment

Hi! You can install Apache (http://httpd.apache.org/) web server and PHP (http://www.php.net/downloads.php)on your computer or network server. This is the easier way to learn PHP.
Forum: PHP Nov 4th, 2007
Replies: 3
Views: 750
Posted By chmazur
Re: What's going on here?

Hi! Did you make an echo of your query? Are you sure that this query is OK? The sql_connect function is connecting OK to the database?

ch.-
Forum: PHP Nov 4th, 2007
Replies: 1
Views: 590
Posted By chmazur
Re: MySQL SELECT question

Hi ashketchum! I think you have to use two tables in your databases.
Category(idCateg, Name) and CategoryContent(idArtic, idCateg, info).
In Category you'll have 5 rows.
In CategoryContent, the rest...
Forum: PHP Nov 4th, 2007
Replies: 8
Views: 710
Posted By chmazur
Re: A Tricky Question for You!

If you are thinking in use stores procedures, sure is the best option. In this case, your aplicattion is not free from the engine of database.
Another way is using functions in external files. (using...
Forum: PHP Nov 3rd, 2007
Replies: 2
Views: 639
Posted By chmazur
Re: Slashes before apostrophies

You can use stripslashes function.

string stripslashes ( string cad)
For example:
\' is changed with '
\\' is changed with \'

ch.-
Forum: PHP Nov 2nd, 2007
Replies: 4
Views: 750
Posted By chmazur
Re: Need Help To Complete Php Project!!

Hi. Did you think in use some simple PHP Ajax script?
There i upload to you an example.
www.mazur.com.ar/combos.rar (http://www.mazur.com.ar/combos.rar)

You have to create the database to test it,...
Forum: PHP Nov 2nd, 2007
Replies: 11
Views: 1,073
Posted By chmazur
Re: PHP problem!

On line 52, you are not select the DB yet.

mysql_select_db($db);

ch.-
Forum: PHP Nov 2nd, 2007
Replies: 11
Views: 1,073
Posted By chmazur
Re: PHP problem!

I wil try with:
if mysql_query("SELECT * FROM test WHERE Account_No = ".$Account_No)

If it don`t work.
Try with:
if mysql_query("sql", $cid)

ch.-
Forum: Web Development Job Offers Sep 7th, 2007
Replies: 4
Views: 2,949
Posted By chmazur
Re: WANTED : PHP/Mysql programmer (US time zone)

Hi, I'm Christian from Buenos Aires. I'm a software engineer working on Web with 8 years of experience. I am interested in export my services. Please let me know if you need my experience. My email...
Forum: Software Development Job Offers Sep 6th, 2007
Replies: 1
Views: 1,163
Posted By chmazur
Re: PHP Deverloper-Urgent

Hi, I'm Christian from Buenos Aires. I'm a software engeneer working on Web with 8 years of experience. I am interested in the opportunity if i can work free lance. Please let me know the Job...
Forum: Software Development Job Offers Sep 6th, 2007
Replies: 6
Views: 1,737
Posted By chmazur
Re: Looking for a programmer

Hi, I'm Christian from Buenos Aires. I'm a software engeneer working on Web with 8 years of experience. I am interested in the opportunity. Please let me know the Job Description. My email is...
Forum: Software Development Job Offers Sep 6th, 2007
Replies: 3
Views: 1,312
Posted By chmazur
Re: PHP/MySQL CMS Beta Testers Needed

Hi, I'm Christian from Buenos Aires. I'm a software engeneer working on Web with 8 years of experience. I am interested in the opportunity. Please let me know the Job Description. My email is ...
Showing results 1 to 30 of 30

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 4:29 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC