Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

DOWNLOAD Sports listings Php

This is amazing, But i cant get it working. Not sure what i did wrong but i only have the three Boxes guide 1 2 3 showing i click on any and it doesn't open anything?
I uploaded your file GUIDES.php to my hosting then in in API/sports.php i changed the Url to my hosed link mywebsite.org/GUIDES.php is that correct?

EDIT: fixed I repaired it by Replacing double quotes inside the onclick attribute with single quotes around the URLs to avoid syntax errors.
I have the same issue as you I think, what was your fix as I can't get it to work when clicking (have messed with the double quotes)
 
I have the same issue as you I think, what was your fix as I can't get it to work when clicking (have messed with the double quotes)
It is set up all you have to do is replace the 3 links with your own guide links the ones I added are for test you add guides php to main html in hosting add that link to your sports api replacing the Tom's guide link usually there
IF links not working check they are inside the quotation marks correctly
 
It is set up all you have to do is replace the 3 links with your own guide links the ones I added are for test you add guides php to main html in hosting add that link to your sports api replacing the Tom's guide link usually there
IF links not working check they are inside the quotation marks correctly
Just nothing happens for me when clicking on 1 of the 3 guide buttons
 
Did you add your own i think my second link may be dead in file need add your own buddy
1000080652.pngin the guides php at bottom change 3 links to your own
 
Last edited:
for me this not work <button class="button" onclick="window.location.href('https://www.tvguide.co.uk/', '_blank');">GUIDE1</button>

but this work <button class="button" onclick="window.open('https://www.tvguide.co.uk/', '_blank');">GUIDE1</button>

Definitely some mistakes with
onclick="window.location.href and onclick="window.open
 
Last edited:
try this.
<button class="button" onclick="window.location.href='https://www.tvguide.co.uk';">GUIDE1</button>
 
Back
Top