Cisco network Community Center by cisco seller HongKong yejian technology Co.,ltd sell all kinds of cisco products ,… A Smiple Java programming (Using jGRASP) Programming Software Development by sean624214 … Silver Bronze Total 1 China 25 16 11 52 2 HongKong 5 8 5 18 3 India 5 3 3 11… Alain18 in Shenzhen Community Center Say Hello! by Alain18 Hi everyone, this is Alain18, a guy living in Shenzhen, a chinese city bordering HongKong, and who has joined this community in the hope of learning something interesting.....in developping business.....in making money......in finding friends........:) payment form detail Programming Web Development by eltonpiko … value="Honduras"/>Honduras <option value="HongKong"/>Hong Kong <option value="Hungary"… reading array from a file Programming Software Development by Alice1990 … KL 4600 10.30 am -1 2300 6 A330 800 HongKong PEN 2800 2.00 pm 0 800[/TEX] How to… Re: reading array from a file Programming Software Development by Alice1990 … KL 4600 10.30 am -1 2300 6 A330 800 HongKong PEN 2800 2.00 pm 0 800 Its shud let… Difference between tablets Hardware and Software Hardware Mobile and Wearables by Pakistaniwife … video or wifi. Another tablet which I have got from hongkong is of same cost but its china product. Its battery… Re: date(); Timezones issue Programming Web Development by diafol …;>HST</option> <option value="Hongkong">Hongkong</option> <option value="Iceland"… Re: How can I write my web crawler for data extraction? Programming Software Development by willygstyle … logic. Such as "showuserreviews", "place", "hongkong". Possibly extract all the links then look for the… Re: Allow user to change their time zone? Programming Web Development by diafol …;,"GMT","Greenwich","HST","Hongkong","Iceland","Indian/Antananarivo","Indian… Re: Cisco network Community Center by DimaYasny fake cisco switches :) how cute Re: A Smiple Java programming (Using jGRASP) Programming Software Development by javaAddict [QUOTE=sean624214;936978] You are assigned to develop a simple Java program to demonstrate the functions provided by the system. [/QUOTE] I am sorry but you are mistaken we don't go to the same school, so I am not [I]assigned[/I] nor am I required to develop that program. You are. I would suggest to create a class with attributes: … Re: A Smiple Java programming (Using jGRASP) Programming Software Development by sean624214 aaa Re: A Smiple Java programming (Using jGRASP) Programming Software Development by javaAddict [QUOTE=sean624214;938599]aaa[/QUOTE] If you thought that just by posting your problem you would be given the solution, you are wrong Re: payment form detail Programming Web Development by eltonpiko some one please help me out im really desperate any suggestion will be a great help. Re: payment form detail Programming Web Development by Shanti C when you are submitting your form then redirect it to one page called insert.php, then redirect to https://www.alertpay.com/checkout". just like this: [CODE]<form id="feedbackform" method="post" action="insert.php" > [/CODE] in insert.php [CODE] // getting form values //inserting code // form <script> … Re: payment form detail Programming Web Development by eltonpiko so i should redirect my form to the insert.php?.what i really want to do is when the payment is successful via alertpay site the detail the user has fill in the form will be send to an email address if the payment is not successful the discard the data the user has fill in the form. Re: payment form detail Programming Web Development by Shanti C before going to alertpayment page ,you just insert all data in your database with flag 0. if payment is successfull in alertpayament, then redirect to success.php page in your website, in that success.php you just write code to make that inserted row flag to 1.then write code to email these details. if payment is not successfull in alertpayament,… Re: payment form detail Programming Web Development by eltonpiko do i really have to submit the form data to a database or can i store it in some kind of variable and can i at lease get a sample of the code for the success.php file so i can customize it to my need cause im a bit lost. Re: payment form detail Programming Web Development by Shanti C [QUOTE]do i really have to submit the form data to a database or can i store it in some kind of variable[/QUOTE] Yes. if we stored all the data in some global variable,while payment or after payment if close our website, all the data set will be lost even if successfully done payment. [QUOTE]at lease get a sample of the code for the success.php … Re: payment form detail Programming Web Development by anilashanbhag there are many ways - you could add it to your database with flag 0 , alternatively if payment site be opened in a pop up and when it is done it redirects to your page . Re: payment form detail Programming Web Development by eltonpiko one thing im not getting is the flag stuff ok i insert the detail of the form in my database before redirecting it to the payment page after payment if its successful it will redirect to success.php which will fetch everthing from the database and email its is that the way its suppose to work? and after payment is complete and the email with the … Re: payment form detail Programming Web Development by Shanti C [QUOTE]i have to manually delete the temp store data in the database [/QUOTE] you just write a query to delete unsuccessful transactions like: [CODE]$q="delete from table name where flag=0";[/CODE] put this query before going to alertpayment.php then all unsuccessful transactions will be deleted on regular basis. Re: reading array from a file Programming Software Development by LuciaPwNs Does the file have to look like that? Can all that information be separated into lines like this: B777 850 Paris KL9395 11.40 am 6 2100 if so you can just use a simple for loop to get that data and put it in an array. Re: payment form detail Programming Web Development by eltonpiko so please clear this out for me i need to use the flag as a true / false and one ive create the flag in my db, in my script i need to use case to control the flag to know which action to take?and one thing how do i make the script to insert the flag automatically because normally after everything is inserted in the db and iv been redirected to … Re: payment form detail Programming Web Development by Shanti C hmm here all we have to work with queries only. first alter your table with flag like: [CODE]ALTER TABLE `table_name` ADD `flag` TINYINT NOT NULL DEFAULT '0';[/CODE] then in insert.php page, your insert query should be like: [CODE] $q="insert into tablename ('','','','[COLOR="Green"]flag[/COLOR]')values('','','',[COLOR="Green&… Re: payment form detail Programming Web Development by eltonpiko i dont know if this is the right way to do it but what i understand was the the code may look a bit like this but ive never use flag so dont know where to implement it check thje code below [CODE]<?php defined( '_JEXEC' ) or die( 'Restricted access' ); inclued ('configuration.php'); $fname = $_POST["fname"]; $lname = $… Re: payment form detail Programming Web Development by eltonpiko the code above is the insert.php page. but one thing is that i dont controll the payment page after pressing the buy now button if will take the user to alertpay site to make the payment then if sucessful or not you define to two url to redirect to.so i should add the code [CODE]$q="delete from table name where flag=0";[/CODE] to my … Re: payment form detail Programming Web Development by Shanti C [QUOTE]so i should add the code PHP Syntax (Toggle Plain Text) 1. $q="delete from table name where flag=0"; $q="delete from table name where flag=0"; to my sucess.php file or fail.php?[/QUOTE] No you just add the above query in the page from which we are going to payment page.not in success.php or fail.php pages. Re: payment form detail Programming Web Development by eltonpiko so we insert [CODE]$q="delete from table name where flag=0";[/CODE] inside insert.php so is the code below correct [CODE]<?php defined( '_JEXEC' ) or die( 'Restricted access' ); inclued ('configuration.php'); $fname = $_POST["fname"]; $lname = $_POST["lname"]; $dobMonth =$_POST["dobMonth"]; $dobDay…