1,317 Posted Topics
Re: It seems that you should go to the source: [URL="http://www.firstdata.com/en_us/customer-center/merchants/support/first-data-global-gateway-virtual-terminal-support"]http://www.firstdata.com/en_us/customer-center/merchants/support/first-data-global-gateway-virtual-terminal-support[/URL] | |
Re: You don't need an SMS gateway. Messages are sent as email messages. | |
Re: Google works pretty well still!. [URL="http://www.google.ca/#hl=en&source=hp&q=php+class+display+records+in+columns+with+pagination&aq=f&aqi=&aql=&oq=&gs_rfai=&fp=a66f90c032379c7"]PHP Class to do this[/URL] The first one seems to have the type of features that you want. Haven't used any of them so you'll need to read the documentation and try them out. | |
Re: Since you didn't provide any code I am guessing a bit as to how you structured it. If you have a page that then has a form to go to another page and if you need to retain variables that were available on the first page: then you need to … | |
Re: Try plugging an external screen into the laptop and see if you can get something that way. Toshiba has some history of screen failures. If you can demonstrate that it is hardware-related then you should contact Toshiba and see what they are prepared to do for you (maybe not much … | |
Re: I don't see anything obvious from your code. If I was going to debug this, I would be looking for answers to the following questions: 1. Which insert is failing? We have to presume that it isn't the first one since the order id in the first table should be … | |
Re: [URL="http://extensions.joomla.org/extensions/e-commerce"]http://extensions.joomla.org/extensions/e-commerce[/URL] | |
Re: The way in which you have done this, you re-display your form every time. I suspect that is why you want to clear the results on a refresh. The POST'ed values don't get deleted on a refresh so you will keep displaying them until you select a different manufacturer. A … | |
Re: If you are trying to run this on your own (local) machine, then you need to create a LAMP (Linux Apache MySQL PHP) environment. There are free packages like EasyPHP and WAMP that you can download to do this. You need to have a simulated Linux server environment (or a … | |
Re: If you are running on Linux, it doesn't treat upper and lower case as the same thing. Either your upload routine has to force everything to lower case (or upper if you prefer) or the display routine has to look for both variations. I didn't go through your code but … | |
Re: Here is a discussion on this topic with some suggestions: [URL="http://forum.kohanaframework.org/comments.php?DiscussionID=2782"]http://forum.kohanaframework.org/comments.php?DiscussionID=2782[/URL] | |
Re: FYI. Here is another option. I built this quite a while back to sort a two-dimensional array on up to 6 keys (using the array_multisort command). This is a bit more than you need in this case but anyone who needs to sort records by one or more keys may … | |
Re: There are commands such as parse_url that may help but maybe the solution in this case is to do your addressing differently. If your programs define a session variable that has the base address of the root folder of your application, then you can do all of your includes relative … | |
Re: For basic questions like this go to W3Schools and search there for the info. [URL="http://www.w3schools.com/css/css_background.asp"]http://www.w3schools.com/css/css_background.asp[/URL] | |
Re: This should help: [URL="http://www.astahost.com/info.php/create-online-timed-test-php_t11978.html"]http://www.astahost.com/info.php/create-online-timed-test-php_t11978.html[/URL] With a timeout as long as 20 minutes, you will need to set the maximum time that your program is allowed to run as you will exceed the normal system default for the system to time you out. | |
Re: For a start, the $assigning_night_row variable used on line 155 isn't being set anywhere in the code that you provided. | |
Re: If everyone is required to sign-in, then you can update the "online" indicator when they sign in. When they sign out or after they have been inactive for a certain amount of time, you can reset it to "offline". If you can also have active users who aren't signed in … | |
Re: You don't have a loop so it makes sense that it would only execute once when $dice is equal to 6. If your intent is to keep generating random values and showing what was rolled, you need a While loop and you will need to change your code to put … | |
Re: Some of what you want could be done with shared files with the only copy of such files residing on just one of the machines. You won't be able to see the changes made on the other machine until they are saved so you won't be able to do real-time … | |
Re: I don't believe that there is a facility that you can just download and use that can do auto form filling and screen-scraping to return the results to you. The more straightforward way to do this would be to copy the list of schools from their website into a spreadsheet … | |
Re: You might want to try a different version of IE (e.g. from a different machine) to see if the problem is consistent. There are bugs and limitations that occur only in specific versions of IE. It won't really be a solution if it works in a different version but it … | |
Re: Your thinking is correct! If you have a field that is a comma-delimited string then explode it and that will create an array of the strings. Then just use a While loop to go through and add the fields together. As you go through them you'll also be counting how … ![]() | |
Re: You have quotes within quotes on line 234. You need to escape the nested quotes or use double quotes inside single quotes (or the reverse). I changed it below to use the outer quotes as single quotes instead of double quotes [code=php] $stylesheets .= '<link type="text/css" rel="stylesheet" href="{$mybb->settings['bburl']}/{$page_stylesheet}" n/>'; $already_loaded[$page_stylesheet] … ![]() | |
Re: Yes, I think it is too much to ask. | |
Re: You need to debug the code to see why it is doing what it is doing. When I started in computers they filled a good size room and computer time was so valuable that you had to desk check your code for problems because there was no other option. I … | |
Re: Read the info from the db into a form where each item each has a checkbox. You will give each item a standard name plus an index number (i.e. name=aaaa$i). In the module that processes the form data, you process the items one at a time in a loop treating … | |
Re: Almost any CMS will probably do since the content (especially tax calculations) will probably have to be custom built. | |
Re: This is a class that makes it pretty easy to use PayPal with IPN: [URL="http://www.micahcarrick.com/php-paypal-ipn-integration-class.html"]PayPal Interface[/URL] If you try it an have any problem figuring out how to use it, let me know and I can give you a sample. | |
Re: There have been problems with losing sessions after a redirect but some of them are specific to the browser and other variables in the environment. In most cases, the session is lost as a result of the redirect but you seem to be saying that it is working initially because … | |
Re: The session variables could only become the same if you are setting them from some common place / value (e.g. a single field set in a database). | |
Re: For starters, you have an error on line 25. You used $POST instead of $_POST. That probably explains the insert not working correctly but maybe not everything. Suggest that you fix that, run it again and see what errors are left. | |
Re: Try one of these: [URL="http://www.wampserver.com/en/"]Wamp[/URL] [URL="http://www.easyphp.org/download.php"]EasyPHP[/URL] | |
Re: If I understand your question correctly, you might need something like: [code=php] if (condition A AND condition B) { some action } elseif (condition A) { some other action } [/code] | |
Re: [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/html2pdf.php"]HTML2PDF[/URL] | |
Re: Your email subject can contain a PHP variable so there is no problem inserting the contact # into the subject in your PHP program. After you read the current value of the counter from your database or file, you can increment it and write it back. If you save the … | |
Re: If your objective is to compare with every element in the array, I think you will need to loop through the array and create a series of OR conditions for the WHERE. | |
Re: Suggest that you contact the author or try another facility to create the Excel file. It isn't very difficult to create an xls file. You can try my little utility [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/desktop_write.php"]Desktop Write[/URL] if you want to experiment. | |
Re: [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/desktop_write.php"]Desktop Write[/URL] | |
Re: If the text is created in advance, why not convert it to PDF and let the adobe plug-in do the work? If the text is created dynamically you still have the option of creating a PDF from it (in PHP) and then display that. If that doesn't do it for … | |
Re: I think that you need to populate the first list drop-down list (not check boxes) and then populate the second one based on what was chosen from the first one. Have a look at [URL="http://translate.google.com/?hl=en&tab=wT#"]Google Translate[/URL] for an example. For an example (a similar but different application using JQuery), see … | |
Re: I think that you should try to create some code and if you have a problem making it work then post the code along with some info on what isn't working and what you have done to try to get it to work. | |
Re: If this is a Java question then it is posted in the wrong forum. | |
Re: You need to create the program to send the mail (it needs all the details from your database or a file to know what to send to who and when) and you will need to trigger it (maybe on a daily basis if you are doing this regularly). Most servers … | |
Re: The message shows two different modules: view.php and constants.php. You have only shown code for one of them (presumably constants.php). You are probably doing an include for view.php and it appears that you are generating some kind of output from that module. Any kind of output prior to using a … | |
Re: A simple Google search led to this item: [URL="http://www.boutell.com/newfaq/creating/backbutton.html"]http://www.boutell.com/newfaq/creating/backbutton.html[/URL] Backspace and Back are different keys. You seem to be referring to the back button. | |
Re: First: You need to put some debug code in (e.g. an echo) to see what is coming back from your confirm window. If it is what you expected, then obviously your code isn't handling the cancel response correctly. Second: If you are showing all the details for a range of … | |
Re: I take it that you want to dynamically create the personal pages. Even if you want the page to have a personalized name, the content can be standard. Then all you have to do is have the standard version and copy it to the new personalized name (php copy command). … | |
Re: For mailing, there are open source classes that can do all the work for you. Most people seem to like [URL="http://phpmailer.worxware.com/#"]phpMailer [/URL] I generally use another one called [URL="http://lwest.free.fr/doc/php/lib/index.php3?page=mail&lang=en"]Libmail[/URL] Normally, for this type of confirmation you generate a unique parm for the message. You need to save the post in … | |
Re: This one may be able to do it: [URL="http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/"]http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/[/URL] | |
Re: [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/desktop_write.php"]http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/desktop_write.php[/URL] |
The End.