Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to generate an embed code for a Donate button on my server so that anytime a user add the code to his/her website the Donate button will show
Publish this code on your website and ask web developers to insert this <div> into their web page html to let their visitor direct to your donation url. replace the link in code below with you donation url.
<div>
<button type="button"><a href="http://www.yourdonationurl.com">Make a Donation</button>
</div>
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
Does anyone know how to add <hr> after every input? For example, the user wants to add an image to his/her account and after he/she added the image, there will be <hr> down below it automatically. It is very important for me to do this.
I tried a couple of solutions on stackoverflow but they didn't work.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How i show data postet in another website to mysql database, in real time on main page of website using PHP and that any new data is displayed in a new line.
Datas that i need show are: name, and finish time (from race).
Use .setTimeout() JS method on main page of website and do jQuery.ajax() requests to your server to update data.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to build a travel planner website for my college using php and MySQL. I want to link train schedule searches from my website to another official website http://www.indianrail.gov.in/know_Station_Code.html such that when a user searches for a particular train in my website then he automatically gets search results in my website without being redirected to the official website. Is there any way I can link my website query to this website?
Option 1 - Direct re-post
<form action="http://the-other-site.com/">
...
<input name="searchterm">
</form>
Option 2 - use CURL in the backend
$curl=curl_init('http://the-other-site.com');
curl_setopt($curl,CURLOPT_POST,1);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl,CURLOPT_POSTFIELDS,'searchterm='.$_POST['searchterm']);
$result=curl_exec($curl);
//display the result
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to add a pdf file that will be shown to user, not in another tab but in a dialog box of website. ( I don't even want to add a download link. )
You can show a pdf in an iframe. So your dialog box must contain an iframe with the pdf.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I like to know is there any way to delete a customer from back end side in zen cart.
I all ways delete a customer details from data base manually.
Go to admin site click customers tab in the menu
and then whatever you want to delete or edit.
Hopefully this video helps: http://www.blogadr.com/tutorials/free-zen-cart-tutorial/zencart_admin_customers.html
According to the video there should be a section that allows you manage customers in the admin side.