Search Results

Showing results 1 to 30 of 30
Search took 0.01 seconds.
Search: Posts Made By: chmazur
Forum: PHP Nov 12th, 2007
Replies: 4
Views: 911
Posted By chmazur
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: 911
Posted By chmazur
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: 8,702
Posted By chmazur
Did you check the user/passw/database and privileges on your MySQL 5.0 ?
Forum: PHP Nov 8th, 2007
Replies: 9
Views: 6,511
Posted By chmazur
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,896
Posted By chmazur
Can you copy the 'config.inc.php' script??

ch.-
Forum: PHP Nov 8th, 2007
Replies: 8
Views: 1,155
Posted By chmazur
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...
Forum: PHP Nov 7th, 2007
Replies: 8
Views: 1,155
Posted By chmazur
Can you show your script?
Probably you must write ';' instead of ':'

ch.-
Forum: PHP Nov 6th, 2007
Replies: 9
Views: 1,378
Posted By chmazur
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: 610
Posted By chmazur
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,409
Posted By chmazur
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,445
Posted By chmazur
ops....
I`m sorry!!!

Mysql is a good option.

:)
Forum: PHP Nov 5th, 2007
Replies: 6
Solved: url splitting
Views: 1,119
Posted By chmazur
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
Solved: url splitting
Views: 1,119
Posted By chmazur
<?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...
Forum: PHP Nov 5th, 2007
Replies: 12
Views: 1,846
Posted By chmazur
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...
Forum: PHP Nov 4th, 2007
Replies: 6
Views: 1,445
Posted By chmazur
http://www.daniweb.com/forums/thread57.html

;)

ch.-
Forum: PHP Nov 4th, 2007
Replies: 12
Views: 1,846
Posted By chmazur
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...
Forum: PHP Nov 4th, 2007
Replies: 12
Views: 1,846
Posted By chmazur
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: 8
Views: 2,552
Posted By chmazur
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,846
Posted By chmazur
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: 938
Posted By chmazur
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: 829
Posted By chmazur
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...
Forum: PHP Nov 4th, 2007
Replies: 8
Views: 1,091
Posted By chmazur
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....
Forum: PHP Nov 3rd, 2007
Replies: 2
Views: 881
Posted By chmazur
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: 961
Posted By chmazur
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...
Forum: PHP Nov 2nd, 2007
Replies: 11
Views: 1,409
Posted By chmazur
On line 52, you are not select the DB yet.

mysql_select_db($db);

ch.-
Forum: PHP Nov 2nd, 2007
Replies: 11
Views: 1,409
Posted By chmazur
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: 6
Views: 3,613
Posted By chmazur
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,450
Posted By chmazur
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: 2,144
Posted By chmazur
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,719
Posted By chmazur
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

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC