1,317 Posted Topics

Member Avatar for rameshreddy

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]

Member Avatar for chrishea
-1
81
Member Avatar for TheVenerableZ
Member Avatar for ﻼim
0
2K
Member Avatar for maunica

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.

Member Avatar for chrishea
0
72
Member Avatar for dwssassin

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 …

Member Avatar for dwssassin
0
145
Member Avatar for superhappi28

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 …

Member Avatar for chrishea
0
102
Member Avatar for tieren

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 …

Member Avatar for tieren
0
140
Member Avatar for dks1383

[URL="http://extensions.joomla.org/extensions/e-commerce"]http://extensions.joomla.org/extensions/e-commerce[/URL]

Member Avatar for chrishea
0
54
Member Avatar for chrchcol

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 …

Member Avatar for chrchcol
0
157
Member Avatar for johndoe444

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 …

Member Avatar for itanum
0
347
Member Avatar for bucktaylor

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 …

Member Avatar for almostbob
0
337
Member Avatar for whimsical1987

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]

Member Avatar for chrishea
0
578
Member Avatar for ptemedia

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 …

Member Avatar for chrishea
0
2K
Member Avatar for Mongooseman

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 …

Member Avatar for chrishea
0
172
Member Avatar for venushin

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]

Member Avatar for kasakit
0
115
Member Avatar for creperz

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.

Member Avatar for vibhaJ
0
102
Member Avatar for lf.gene

For a start, the $assigning_night_row variable used on line 155 isn't being set anywhere in the code that you provided.

Member Avatar for chrishea
0
144
Member Avatar for Dartz654

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 …

Member Avatar for mschroeder
0
109
Member Avatar for Tenaciousmug

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 …

Member Avatar for EverWebby
0
118
Member Avatar for Dcurvez

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 …

Member Avatar for Dcurvez
0
98
Member Avatar for milestonesweb

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 …

Member Avatar for chrishea
0
133
Member Avatar for navi17

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 …

Member Avatar for navi17
0
138
Member Avatar for raaboo

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 …

Member Avatar for diafol
0
168
Member Avatar for The Z. Will

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] …

Member Avatar for rajarajan2017
0
865
Member Avatar for cyberjorge
Member Avatar for stu9954

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 …

Member Avatar for chrishea
0
182
Member Avatar for LRNPHP

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 …

Member Avatar for ronty2010
0
284
Member Avatar for aynamohol

Almost any CMS will probably do since the content (especially tax calculations) will probably have to be custom built.

Member Avatar for aynamohol
0
153
Member Avatar for baudday

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.

Member Avatar for baudday
0
125
Member Avatar for Dartz654

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 …

Member Avatar for Dartz654
-1
146
Member Avatar for k2k

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).

Member Avatar for chrishea
0
108
Member Avatar for danny_mccaslin

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.

Member Avatar for danny_mccaslin
1
200
Member Avatar for saravanados

Try one of these: [URL="http://www.wampserver.com/en/"]Wamp[/URL] [URL="http://www.easyphp.org/download.php"]EasyPHP[/URL]

Member Avatar for Ankit_Parmar
0
94
Member Avatar for idane

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]

Member Avatar for idane
0
883
Member Avatar for toydiaz

[URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/html2pdf.php"]HTML2PDF[/URL]

Member Avatar for chrishea
0
65
Member Avatar for idkgood

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 …

Member Avatar for idkgood
0
114
Member Avatar for Mike516

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.

Member Avatar for Mike516
0
146
Member Avatar for helloworl

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.

Member Avatar for chrishea
0
39
Member Avatar for wish02

[URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/desktop_write.php"]Desktop Write[/URL]

Member Avatar for chrishea
0
143
Member Avatar for antiv_boy

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 …

Member Avatar for antiv_boy
0
1K
Member Avatar for davidrooker

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 …

Member Avatar for davidrooker
0
80
Member Avatar for mastermind2

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.

Member Avatar for mastermind2
0
140
Member Avatar for kalidas69
Member Avatar for nick3592

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 …

Member Avatar for chrishea
0
81
Member Avatar for tulipputih

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 …

Member Avatar for tulipputih
0
286
Member Avatar for sathya123

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.

Member Avatar for chrishea
0
144
Member Avatar for Smudly

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 …

Member Avatar for Smudly
0
699
Member Avatar for Hypalink

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). …

Member Avatar for Hypalink
0
189
Member Avatar for ptara1

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 …

Member Avatar for chrishea
0
211
Member Avatar for swi2

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]

Member Avatar for chrishea
0
68
Member Avatar for ritesh0104

[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]

Member Avatar for swi2
0
94

The End.