How to set up a web e-payment system(Donation System )? [closed] - php

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 4 years ago.
Improve this question
The current website is running only with HTML pages.
My idea to set up a web epayment system (Donation System) is that I would like to build a web server with Xmapp. I am going to build a db stored the payment info . The HTML form passes the info to the db and the field of payment amount passes to the payment website . After the user clicks the submit button , it redirects to the epayment websites .The users end the process with the epayment websites. And it auto-generate an email to the user.
Is this idea possible ?
Update
1.Any more convenient ways to set up the db with purely HTML?
2.Should I register the shop ac in the epayment websites ?

Smith is still right but it looks like you are going to have to implement a basic CRUD application with php, you 'cannot' implement this without a programming language ( i.e. with only html).
HERE IS A SIMPLE TUTORIAL:
https://www.startutorial.com/articles/view/php-crud-tutorial-part-1
There are apis for payment integration with php.

Related

Send push notifications from website to pwa [closed]

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 3 years ago.
Improve this question
We have an app that has separate pwa and standard web site made in CodeIgniter(PHP framework).
Is there a way to send push notifications from a web site version of the app, to the pwa users that never visited the website?
For example when somebody post a comment on a user picture using the web site, is there a way to notify the pwa user?
From the research I've done, its possible to send the notifications from website if user accepts them, but if used that method, user would first have to visit the website on their cell phone and accept the push notifications. That is not very user friendly.
Ideally, the user would just use the pwa, accept the notifications there, and actions on the website would trigger notifications to the pwa-s user cellphone.
No.
Browser based notifications are designed to be opt-in. That policy is enforced by the browser.
Without that our phones would be buzzing 24 hours a day.
You could build a native app that does notifications.

How to Manage a Web Portal [closed]

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 6 years ago.
Improve this question
Can someone give me ideas of how the admin managing the school announcements and events of a web portal? Like how they put it in there? is it manually coding? I just started programming php.
If you use pure HTML manually write the code inside the portal .
If instead use PHP is normally integrated with a database in such a way that once created the basic structure ( PHP that reads from Database ) the whole system is dynamic.
Normally if it comes to dynamic sites are used in the CMS that are web applications that interact with the database to enter data (a real data entry)
List of some free CMS:
WordPress
Joomla
concrete5
Drupal
If you are learning you should look at the official documentation for PHP Manual link
And look MySQL which is a great open source database MySQL link

Populating a part of the site with dynamic content [closed]

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 8 years ago.
Improve this question
I am a newbie and have been programming this site for a school. And I have been stuck in a part where I have to show the logged in users the subjects he/she is currently enrolled in. I am thinking of making it appear using Ajax with a click of a menu button on the left side. So how do I populate this with a card for each subject he/she is taking? The subjects is stored in a MYSQL database. I am currently using Codeigniter Framework. Would you suggest using scripts like Angularjs? I am very new to this. Here is the sample site:
If you are very new to this, I suggest you first use regular GET/POST based interactions with the site so that clicking on a button will reload this page, or a new one with the relevant information.
Once you have moved from total newbie to a novice/rookie, you can start converting some of those areas to Ajax.
Once you become fully comfortable with that, only then should you think using JavaScript frameworks like angularjs or backbonejs.
Its an incremental skillset acquisition, and is always best done like that.
All the best!

CRM Database Design for multiple users [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Ok, I have built a custom CRM web app for a client using PHP and MySQL. The app seems to work really well for them and so I have decided to create a commercial version open to the public.
The basic idea of it is that it takes the data captured from a website and then populates the database with that. At the moment there is simply and insert statement on the front end of the website.
The thing is, I want people to be able to sign up to the service, create an account and customise it themselves to suit their needs. My idea is that once they sign up they would be provided with a form action that submitted to their account when installed on their page.
Regarding tables in the database etc, currently there is simply a customers table as there is only one website using it. If people being to sign up and use the service, do i create a new table for every account? This might be right but it seems a bit silly to me. Or is there a better way of going about this?
Usually, it's better to add a customer_id column, and add a WHERE customer_id=12345 clause to all your MySQL queries. Having a separate table per customer is certainly possible, but it may not scale as nicely.

Reading Website pages [closed]

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
Assume there is a website called http://example.com/a
the website is being developed using PHP, Perl, Ruby and other languages.
I want to be able from my website to read this website pages, execute the code and then analyze the HTML result page tags and getting the content using PHP.
it's like reading news from some news websites and then displays it in my website in different format or different style.
I'm not sure you understand this aspect of web programming, but you cannot access the server-side code which generated the HTML. You can of course parse the HTML which is returned from the server by using one of many HTML parsers.
That may or may not have been what you asked, because your question is a bit vague to me. Note that if you want to collect information from other web pages on your web page, you should make sure your web site doesn't make a request to those other web pages each time a user visits your site. (Phew, that was a handful!) You need to implement some sort of caching of the other web sites' content.

Categories