Quote:
Originally Posted by ragtek
Also you can change this part:
PHP Code:
$qry = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "microbusiness_profiles WHERE id=$profileid LIMIT 1"); $profile = $db->fetch_array($qry);
to
PHP Code:
$profile = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "microbusiness_profiles WHERE id=$profileid");
1. you don't need a limit, there can be only one profile with this id
2. because there's only one result, you can use query_first instead of query_read
|
LIMIT 1 is also correct plus it has an advantage. Try to query a table with 5,000 records using query_first and then using my style. Then count the elapsed time. After this you'll understand why I'm using LIMIT 1 and not query_first.
Quote:
Originally Posted by ragtek
on:
do=topitems
do=newitems
do=premiumitems
i'm getting white pages
also
Top Rated Items & Popular Items links to the same=> do=topitems
|
As I wrote before, lite version came out by subtracking functions and other parts of code. I'll check it and I'll correct the errors.
Quote:
Originally Posted by ragtek
also the tabs are not ok
Attachment 103965
i would add some space between the tabs & words
|
They don't work on Firefox only. Firefox understands on different way than the other browsers (not only IE), the meaning of 100% in width when there are other cells with fixed width. To make it more clear, if in a row there are 3 cells, 2 of them with specific width 100px and you want the 3nd one to have the rest available width, other browsers accept as width of 3nd cell 100%, while firefox not. Firefox needs to ommit "width" in the 3nd cell.
Quote:
Originally Posted by ragtek
Next Prob: rating is not working
|
I'll check it.
Quote:
Originally Posted by ragtek
I realy like your ideas, but there always full of bugs. Why is that so?
|
They're not real bugs. The original (full version) works 3 months not without a single bug. The problem comes out when I'm removing features from the full version. By doing I'm always removing by mistake code that it must remain.
Quote:
Originally Posted by ragtek
And is there now a commercial version? What are the new features?
|
[/quote]
Yes, there is, but not available to public yet. I gave it just to 7 old clients, as I was ready to leave for vacations and had no time for support others.
Maria