Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~6K People Reached
Favorite Tags

6 Posted Topics

Member Avatar for helpmmeworld

That happens because if you don't put a protocol in a link it will be interpreted as a subdirectory so if you want to make an external link you should put [CODE]http://|https://|ftp://[/CODE] etc so in your case it would be [CODE] $link = "http://www.twitter.com"; <a href ="<?=$link?>"> link </a> [/CODE]

Member Avatar for rajarajan2017
0
117
Member Avatar for ms_sws

You could try to make a img tag put your to_be_tested.jpg to be the source and then you test for the height and width of that tag, if its 0 then the image doesnt exist if not then it exists. But I think it doesnt work in all browsers. I …

Member Avatar for Airshow
0
5K
Member Avatar for OmniX

If i understand this right,you want to push a delete button which will make a popup window and delete some file,while the popup window has opened you want your source page(the one with the delete button) to be refreshed ? Try this button maybe this is what you want [code] …

Member Avatar for ax8l
0
555
Member Avatar for ax8l

Hello everybody, I want to overload a function based on an array dimension or pointers. Ex: [CODE] int calc(int a[]); int calc(int a[][]); [/CODE] or [CODE] int calc(int *a); int calc(int **a); [/CODE] *a should be &a but i dont know how to face a reference of a reference so …

Member Avatar for ax8l
0
102
Member Avatar for mattyp791

Process your $_POST and do some switch function to see what type the user selected and set your $search_type [CODE]$result=$db->query("SELECT PCBrand, LBrand, PCLAPTOP, ONLINEHIGHSTREET, Retailer, Address, Address_2, Town, County, Postcode, Postcode_code, Phone, Website FROM database WHERE PCLAPTOP LIKE 'type' AND " .$search_type. " LIKE '%$searchterm%'");[/CODE] If this is wrong i …

Member Avatar for diafol
0
163
Member Avatar for gptArun

Usually errors occur before that line. Oh,if you could do a var_dump before that line to see what values are you working with , ohh dont forget to put a die() in too. [CODE]var_dump($_POST); die();[/CODE]

Member Avatar for gptArun
0
131

The End.