Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

6 Posted Topics

Member Avatar for veledrom

Hi. I'll try to answer this to the best of my abilities. 1) You don't [I]need[/I] to purchase a certificate to provide SSL, you just need to install one (which can be done for free). However, purchasing a certificate adds "comfort" for the user, as your site is verified by …

Member Avatar for vincent2085
0
83
Member Avatar for eramgarden

We certainly use shopping carts (baskets) at my job. As you point out, carts are malleable and transient, while orders are hard data. It only takes a couple of SQL statements and a foreign key to transform the former into part of the latter.

Member Avatar for syahrizal
0
157
Member Avatar for InsightsDigital

Personally, I ignore the warnings. But then, I run linux and don't worry too much about infections. At work, we've been using a third-party checkout company for years. Just this summer, their certificate expired and, after numerous attempts to contact the company, we've concluded that the site is no longer …

Member Avatar for MktgRob
0
81
Member Avatar for schizoman

Howdy. I just joined. At 53, I'll bet I'm near the right end of the age curve. I've been playing with computers since I first purchased an Apple II+ decades ago. Currently, I'm running Ubuntu Linux, and prefer it to Windows for a multitude of reasons. For the past 6+ …

Member Avatar for jasimp
0
100
Member Avatar for AlPhA

There's lots to be said about all of the technologies listed in the replies above. Still, I prefer a simpler approach. Begin with XAMPP and Firefox. XAMPP is a PHP/Apache/mySQL package that works on various platforms. I choose the Firefox browser because there's all sorts of development tools available as …

Member Avatar for schizoman
0
519
Member Avatar for hsmom314

Here's a quick and dirty way to do it with nested "for" loops: [code] $strQS="select [I]field[/I] from [I]table[/I] order by [I]index[/I]"; $refItems=mysql_query($strQS) or die (mysql_error()); $cols=ceil(mysql_num_rows($refItems)/15); $tableData=array(); for($x=0;$x<$cols;$x++) { for($y=0;$y<15;$y++) { $tableData[$y][$x]=@mysql_fetch_assoc($refItems); } } echo <<<TABLESTART <table> <tr> <th colspan={$cols}> Your Header Here </th> </tr> TABLESTART; for($x=0;$x<15;$x++) { echo "<tr>\n"; …

Member Avatar for schizoman
0
935

The End.