I need someone to fix some PHP code for my site.
Please read carefully.
Our site uses two MySQL databases to operate. (Please see attached files for code).
We are trying to code something to connect to the second database.
We want you to fix our code so our script can connect to the second database and will still allow the file to use the first database.
Thanks.
We have a Zencart website which uses Directone payment portal. The website works fine however when a coupon code is applied the discounted amount is not being sent to Directone for processing.
Coupons work fine with PayPal.
Categories: Code, Coupon, Fix, Portal, Zen Cart Tags: Code, code fix, Coupon, coupon code, Fix, Portal, zencart
I have two search scripts and both returning only 1 search result even though it has more than 1 result in database. attached both files to fix
I have a program which was written in FOXPRO for windows ME. The code that goes to the printer was written specifically for HP lazerjet. I am now using a canon MP160. I need someone to write a new code that will print to the Canon MP160. There is a very good probability that I am going to want considerably more work done on this program and update it to run on Windows 7 and higher.
More work to the same project as discussed via gtalk
Hi,
I am a small start up company using SocialEngine software for my networking site. The site is up and running, mostly functioning properly and needs a few errors to be fixed.
Bugs will maybe take 5-6 hours of work.
Only those who have worked with socialengine before may bid.
I need someone with ezrealty hands on experience , I need a couple of field , bugs fixed . I also need some front end change I need the pdf Markeing Material Text size and wording changed . www.ewrealestate.org
Categories: Joomla, MySQL, PHP, Script Installation Tags: Code, code fix, ezrealty, ezrealty small, ezrealty small code, Fix, mysql script installation, php mysql script, small, small code
I have a small jquery application that currently uses 1.3.2 library I would like to make it functional with 1.2.6. currently there is only one error displaying. So this should be a fairly quick fix
I need a solution for fixing OL float problem on this page (under the URL section):
http://www.linkcuts.com/link01
This problem only exists in IE, it looks correct in Firefox. I will not be able to provide server access.
Categories: CSS, XHTML Tags: Code, code fix, explorer, Fix, fix for, for internet, for internet explorer, Internet, Internet Explorer, internet explorer xhtml
I have isolated out a function that is not working, I need this fixed ASAP.
Hello,
I need this code repaired.
What it does is delete ads that are older than one day. That works great. The second part is suppose to delete the viewed record. In other words every time the ad got viewed the information was stored in the viewed table. If the ad gets deleted all records pertaining to the deleted ad should also be removed from the viewed table.
[code]
//first clear the database of expired ads.
$onedayago = strtotime("-1 day");
$querys="select * from post where posted < '".$onedayago."'";
$results=mysql_query($querys);
//now build the query.....
while ($lines = mysql_fetch_array($results)) {
$postid = $lines["postid"];
if ($counter==0) {
$queryv.= "delete from viewed where id=".$postid." ";
}
else {
$queryv.= " and id=".$postid." ";
}
$counter=$counter+1;
}
if ($query<>"") {
$resultv=mysql_query($queryv);
}
////////////////
CREATE TABLE `viewed` (
`id` int(11) NOT NULL auto_increment,
`postid` int(11) NOT NULL default '0',
`userid` varchar(30) NOT NULL default '',
`paid` tinyint(1) NOT NULL default '0',
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=466286 ;
[/code]
Categories: MySQL, PHP Tags: amp, Code, code fix, counter, default, delete, Fix, MySQL, mysql code, not null, not null default, null, null default, PHP, php mysql, php mysql code, postid, Query, queryv, table, the viewed, the viewed table, viewed, `id`