Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
4 Commented Posts
0 Endorsements
Ranked #686
~13.7K People Reached
Favorite Tags

73 Posted Topics

Member Avatar for tr6c

I served for several years as a Senior Team Member with the osCommerce project and can honestly say that its development progress is less than admirable with nothing other than bug fix releases since its initial 2.1 release in 2001. As a consequence and due to our own needs for …

Member Avatar for Everyauction
0
717
Member Avatar for Harora

Opinions vary greatly on osCommerce - see this thread for more: [url]http://www.daniweb.com/forums/thread106522.html[/url]

Member Avatar for mark santa
0
229
Member Avatar for smchauhan

I don't believe you will find a way to access remote hardware using PHP. If you do, please let me know.... maybe I can win a MacBook Air also! :icon_lol: Matti Ressler Suomeia

Member Avatar for vicfen2k9
0
114
Member Avatar for clmirand

The cure for this problem is not to change PHP settings, but rather to update the the script's reliance on register_globals. Would help if you indicated which script you are using, however clearly it is rather outdated and you should look for something more up to date. Matti Ressler Suomedia

Member Avatar for parasp2003
0
370
Member Avatar for cancer10

We use Scriptaculous and its Animation Framework: [url]http://wiki.script.aculo.us/scriptaculous/show/CombinationEffectsDemo[/url] Matti Ressler Suomedia

Member Avatar for maxvergelli
0
184
Member Avatar for happygeek

This was the first fully Ajaxed site that we created: [url]http://3hmp3.com[/url] (based on osCommerce, so please excuse the markup). Take a look at it on Google... absolutely no problem. You just gotta know how to do it.

Member Avatar for Suomedia
0
328
Member Avatar for BamaStangGuy

We specialise in multimedia websites and use FFMPEG (serverside). Also good for creating MP3's from almost any format. Matti Ressler Suomedia

Member Avatar for peter_budo
0
313
Member Avatar for shaikh_mshariq

Usually the simplest thing to do is to click on the yellow ! icon in the bottom left of the browser window in IE. This will tell you the error. Better still, use Firefox and use the error console. We can't see your code, so thats the best I can …

Member Avatar for nish123
0
178
Member Avatar for lordx78
Member Avatar for mail2saion
0
439
Member Avatar for nikhita

The simplest way to download table data is to use phpMyAdmin. Matti Ressler Suomedia

Member Avatar for trochia
0
500
Member Avatar for conkon

We are soon releasing a GPL cart that we use ourselves for creating MP3 stores - here is our most recent site still in development: <url snipped -- see signature> We were aiming to release this month, however I have been rather snowed under and we probably wont get it …

Member Avatar for hooinsider
0
208
Member Avatar for Dani

Yep... IE6 users don't like to upgrade, simple as that and we will need to keep supporting it. Since I am not a fanatic for valid style sheets (see no valid reason to be) I am thankful that IE6 display bugs are relatively simple to fix using underscore (importing extra …

Member Avatar for Troy III
0
176
Member Avatar for asxetopoulos

I really think that the people here offering advice on how to remove/obscure the copyright notice need to get a life! Such removal without permission from the developer is perfectly illegal (as is offering advice on how to do it). To say that you are a "victim" of something that …

Member Avatar for webdev64
0
179
Member Avatar for Vity

I dont see anywhere in your script where the values for the following variables are set: $mime_boundary $fileatt_type $picture_name $fileatt_name It wont work if the values are empty. Matti Ressler Suomedia

Member Avatar for Vity
0
448
Member Avatar for markhammill

Zen Cart has an MVC architecture and relies on the index.php. You could install Zen Cart into a sub directory and link to it from you main site, however people may have problems when switching between the cart and your main site (losing the session and cart contents). A better …

Member Avatar for markhammill
0
273
Member Avatar for Venom Rush

You would do far better not to rely on javascript for this at all. Instead you should parse the post with PHP and from that display a confirmation for the delete if delete was selected. That is simply good coding practice. It is common to use javascript for error checking …

Member Avatar for nav33n
0
170
Member Avatar for RoryGren

If your script works but takes forever, you probably need to add indexes to your tables. Matti Ressler Suomedia

Member Avatar for RoryGren
0
105
Member Avatar for austin-khoi

You must close each form with </form> and make sure that one form is not within another. Matti Ressler Suomedia

Member Avatar for nav33n
0
146
Member Avatar for sukhy_1

[CODE]$query = "SELECT address_code FROM address WHERE userID= '".$myuserID."'"; $result = mysql_query($query); <td><input type="text" name="PickupAddressPostCode" value="<?php echo $result['address_code']; ?>" /></td>[/CODE] Matti Ressler Suomedia

Member Avatar for nav33n
0
185
Member Avatar for firthusa

Why are you creating an e-commerce application when there are open source ones available (including multiple stores . I know at least two)? Matti Ressler Suomedia

Member Avatar for Suomedia
0
143
Member Avatar for smartness

Try this: [CODE]<!--[if !IE]> --> <object type="application/x-shockwave-flash" data="http://www.zeriislam.com/menu.swf" width="923" height="90"> <!-- <![endif]--> <!--[if IE]> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="923" height="90"> <param name="movie" value="http://www.zeriislam.com/menu.swf" /> <!--><!--dgx--> <param name="loop" value="true" /> <param name="menu" value="false" /> <p>Flash Player Required</p> </object> <!-- <![endif]--> [/CODE] Matti Ressler Suomedia

Member Avatar for Suomedia
0
210
Member Avatar for kusal

[QUOTE=nav33n;571840]. Its not a good practice to have @, because it makes your life very difficult to know where the exact error is.[/QUOTE] I agree. I have absolutely never used it.... another lazy practice even worse than short tags. Good code has error handling, not error suppression. Matti Ressler Suomedia

Member Avatar for kusal
0
90
Member Avatar for sukhy_1

The error is in your PHP. You are missing this: [CODE]$StudentName = $_POST['StudentName'];[/CODE] Matti Ressler Suomedia

Member Avatar for Suomedia
0
153
Member Avatar for pranto157

I don't see anything there that wont run on PHP4, although I would change this: [CODE]$query = "SELECT * FROM $table_id";[/CODE] to this: [CODE]$query = "SELECT * FROM " . $table_id;[/CODE] Perhaps the problem is with your DomDocument class? You should attach the files to your post. Matti Ressler Suomedia

Member Avatar for Suomedia
0
95
Member Avatar for hunkychop

Although the syntax of your example is incorrect, yes, you can create a function to manipulate the data. eg. [CODE=PHP]<?php function myFunction($input) { $output = strtolower($input); return $output; } $data = 'TEST'; $result = myFunction($data); echo $result; ?>[/CODE]

Member Avatar for hunkychop
0
127
Member Avatar for sukhy_1

Somewhere up the top put: [CODE]$sentmail = NULL;[/CODE] Matti Ressler Suomedia

Member Avatar for Suomedia
0
1K
Member Avatar for marlonbrando

Probably the best way to start learning is to pick up an open source application such as Joomla or PHPnuke and learn from it, modify it, break it. I use WAMP as a local development environment which allows running these applications on my local machine rather than a web server. …

Member Avatar for Suomedia
0
62
Member Avatar for kevin wood

The table already exists. Your latest code is correct (the other you had "$database_name" in quotes, which is incorrect). Matti Ressler Suomedia

Member Avatar for kevin wood
0
160
Member Avatar for justted

[QUOTE=justted;570748]Hiya thanks for the replies., But what does the Ob_start and end mean/do? [/QUOTE] It was explained, but we will try again. ob_start(); buffers the output to the browser (stops it) until ob_end_flush() is called. If you don't have ob_end_flush() then the output of code after ob_start will not be …

Member Avatar for RoryGren
0
188
Member Avatar for VIeditorlover

Its possible. It requires a GEO-IP database. There are a number of free and commercial ones available. Matti Ressler Suomedia

Member Avatar for Suomedia
0
99
Member Avatar for sagedavis

There is nothing in the code that you posted that is actually causing the error. Look at my tutorial [URL="http://afcomponents.com/tutorials/flow_list/46/"]here[/URL] which has a nice introduction to using database classes. Matti Ressler Suomedia

Member Avatar for sagedavis
0
142
Member Avatar for mspake

[CODE]<?php if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='') { header("Location: invalid.htm"); } else { echo '<strong>Thank you for your input. If requested, we will contact you as soon as possible.</strong><br>'; }; ?>[/CODE] Matti Ressler Suomedia

Member Avatar for Suomedia
0
96
Member Avatar for Dsiembab

Instead of using $_GET variables use $_POST. Any such transaction should be over a secure SSL connection. I don't see any reason to be passing username and password at all other than a login page. Once logged in, you should be using $user_id which would be registered in $_SESSION or …

Member Avatar for Suomedia
0
108
Member Avatar for Diode

Its not possible to not save the image, however if it has already been uploaded you can display it in the second edit stage and if another image is not chosen again, to use the one already uploaded. You can also unlink() it if the whole thing is canceled. Matti …

Member Avatar for digital-ether
0
264
Member Avatar for frannydee

Simply use the [URL="http://www.php.net/mail"]mail()[/URL] function during the processing of your form data. Matti Ressler Suomedia

Member Avatar for Suomedia
0
21
Member Avatar for mcx76

There are numerous versions of both osCommerce and Paypal modules to go with it. You should be using osCommerce 2.2-RC2 and the Paypal modules included with that. They function just fine. If you have an older version you NEED to upgrade. Matti Ressler Suomedia

Member Avatar for Suomedia
0
81
Member Avatar for rickya100

You have $_POST variables such as this: [CODE]$_POST[activationsubmit][/CODE] They must be like this: [CODE]$_POST['activationsubmit'][/CODE] Fix those first and see what happens. Matti Ressler Suomedia

Member Avatar for rickya100
0
117
Member Avatar for tefflox

It doesn't look good in any browser. Fix your javascript errors first. Try searching Google for "browser simulator" Matti Ressler Suomedia

Member Avatar for Suomedia
0
192
Member Avatar for maxmannuk

[QUOTE=maxmannuk;568601]I have some problems with javasript functioning in firefox... something very basic as open window browser???????????????????[/QUOTE] Javascript works just fine in Firefox... the problem is your code. Matti Ressler Suomedia

Member Avatar for maxmannuk
0
58
Member Avatar for kv79

The only way to write robust applications is to hand code. Most developers make use of class libraries which greatly reduce coding time. There are also development frameworks such a the Zend Framework which make building applications much simpler. The main tool I use is Ultra edit which is simply …

Member Avatar for nav33n
0
116
Member Avatar for jobykjoseph
Member Avatar for jobykjoseph
0
145
Member Avatar for ohtechie

Sounds like you have an open <div> tag, most likely in your right column..... looking.... nope, tag counts match. Try this in your footer class: clear:both; Try also fixing these errors: [url]http://validator.w3.org/check?uri=http%3A%2F%2Fohiochirorelief.com%2F[/url] Matti Ressler Suomedia

Member Avatar for ohtechie
0
149
Member Avatar for NelsonAFS

Are you allowed to reproduce the images? If so, the simplest way is to ask them to zip them up for you so you can download them. You cant just "link" images onto your hard disk.... they must be downloaded. Matti Ressler Suomedia

Member Avatar for Suomedia
0
78
Member Avatar for knight fyre

Looks rather nasty (no offense) I normally do this kind of layout like this: [CODE]<div style="position:relative; width:100%"> <div style="width:33%; float:left; text-align:center;"><img src="my_image.gif" /><br />Text</div> <div style="width:33%; float:left; text-align:center;"><img src="my_image.gif" /><br />Text</div> <div style="width:33%; float:left; text-align:center;"><img src="my_image.gif" /><br />Text</div> </div>[/CODE] Matti Ressler Suomedia

Member Avatar for knight fyre
0
126
Member Avatar for greekrajnaren

[QUOTE=peter_budo;566893]I had quick look at your source code and I do not understand why you trying to pull flash with use of JavaScript. [/QUOTE] This is done so that flash objects don't need to be clicked in IE. Your javascript file is missing or in the wrong location: [url]http://www.greeksplanet.com/Scripts/AC_RunActiveContent.js[/url] (returns …

Member Avatar for kavithakesav
0
159
Member Avatar for iliasb

You have two divs, id="result": [CODE]<div id="result">[/CODE] ID names must be unique and your div tags are open. I don't see the ID's you say. Matti Ressler Suomedia

Member Avatar for iliasb
0
134
Member Avatar for sukhy_1

You need a database query on your login page to fetch the name you wish to display, then to register it in $_SESSION. Not possible to show you exactly how without seeing your login page code. Matti Ressler Suomedia

Member Avatar for Suomedia
0
87
Member Avatar for macy2323
Re: html

We do this kind of thing all the time, using either Ajax or javascript depending on what is needed. Perhaps its best you describe exactly what you wish to happen when the button is clicked. Matti Ressler Suomedia

Member Avatar for Suomedia
0
83
Member Avatar for Matt Scherer

A common way to do it is this: [CODE]$data = mysql_query('SELECT * FROM `bus_basic` ORDER BY `name` ASC ') or die(mysql_error()); Print "<table cellpadding=3>"; $count = 0; while($info = mysql_fetch_array( $data )) { $count++; Print "<tr>"; Print "".$info['name'] . " "; Print "<br>&nbsp;&nbsp;&nbsp;".$info['address'] . " "; Print "<br>&nbsp;&nbsp;&nbsp;".$info['city'] . ", …

Member Avatar for Suomedia
0
107
Member Avatar for kishou

Try this: [CODE]li { margin-bottom: 100px; }[/CODE] Matti Ressler Suomedia

Member Avatar for MidiMagic
0
75

The End.