Question : Cable modem gets spotty internet in new location

I've got two TVs hooked up to cable in my house, one in the living room and one in the bedroom. The bedroom line currently has a splitter that goes to a TV on one line and the cable modem on the other. I want to move it to the living room and set it up the same way, but when I tried it my internet connection was really slow. The line to the living room has an in/out/tap, with the TV connected via the tap. I ran the splitter from the cable coming from the tap to the modem and the living room TV. I was able to get TV the same, but the internet connection was awful.

Equipment:
- Motorola Surfboard SB5101
- Netgear WNR2000 wireless router

My guess is bad wiring, and that for some reason internet requires a stronger signal through the cable than TV. Any ideas?

Answer : Cable modem gets spotty internet in new location

That is caused by $src_id being passed in explicitly without interpolation because the sql is enclosed in single quotes.  If you change to one of the below, it should work (or at least give a different error).

$dbh->do("delete from pfnd.funding_journal_vw fj where fj.SRC_ID = \"$src_id\"");
$dbh->do("delete from pfnd.funding_journal_vw fj where fj.SRC_ID = '$src_id'");
Random Solutions  
 
programming4us programming4us