Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
~32.5K People Reached
Favorite Tags
Member Avatar for Duki

Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start it off: Deli Sandwiches, macaroni salad, potato salad and a Pepsi :)

Member Avatar for Reverend Jim
22
17K
Member Avatar for christina>you

[B]The rules are simple:[/B] [B]Use [U]one[/U] word to start a story and then continue it.[/B] I will start: Once

Member Avatar for advent_geek
0
3K
Member Avatar for Kewne

Hi guys, I have a question related to Epesi,I wanna make an action once the save button is clicked but I couldn't figure out how I would be able to manipulate the save button.Is there a way on how I could make a callback for the save button? I am …

Member Avatar for diafol
0
119
Member Avatar for Kewne

Hi, I'm trying to run netbeans debugging tool but I always get a message "This webpage is not available". I tried following a configuration from youtube which says to uncomment the zend_extension = "C:\xampp\php\ext\php_xdebug.dll" and xdebug.remote_enable = 1. But I can't still make the debug works. Can anyone help me …

0
139
Member Avatar for Kewne

Hi guys, Can you suggest me a free web (browser) tester and can I hear your opinions about this testers? Thank you.

Member Avatar for djjeavons
0
327
Member Avatar for Kewne

I have made a simple code that will only save to a simple database. I have this code: register_activation_hook(samplePath, 'sample_install'); add_action('admin_menu', 'main'); add_action('user_admin_menu', 'main'); and a function like this : function main(){ <?php if (current_user_can('smessage')) { echo("admin");} else{ if(current_user_can('rmessage')){ echo("other user"); } } } and this the sample_install function from …

Member Avatar for asimegusta
0
186
Member Avatar for Kewne

Hi guys, I'm trying to set up a localhost,...but I am getting this error from apache error logs "Cannot serve directory C:/xampp/htdocs/crm/images/: No matching DirectoryIndex (index.php,index.pl,index.cgi,index.asp,index.shtml,index.html,index.htm,default.php,default.pl,default.cgi,default.asp,default.shtml,default.html,default.htm,home.php,home.pl,home.cgi,home.asp,home.shtml,home.html,home.htm) found, and server-generated directory index forbidden by Options directive, referer: http://localhost:8080/qwer/index.php" I don't know what to do with this. I have searched the net …

Member Avatar for Kewne
0
322
Member Avatar for Kewne

Hi guys, I just happen to use chrome and mozilla at the same time (well everyone can do that ). I always use chrome to login to Daniweb, just this morning I decided to use mozilla to login here at Daniweb. At first I thought I was giving the wrong …

Member Avatar for Kewne
0
413
Member Avatar for Kewne

Hi guys, I am learning how to code using epesi framework. Can anyone help me with this** Utils_RecordBrowserCommon::get_records** . I can't make it work it always gives me this error **Message: RecordBrowser critical failure, terminating** . I have followed on how the rb is used, this is my code $data …

0
147
Member Avatar for Kewne

Hi guys, I just followed the tutorial on epesi and have finished making their tutorial on "Hello World". Now, I'm trying to create another module but it doesn't show up at the administrator availanble install. It was just a simple code following the skeleton presented at the HelloWorld tutorial just …

0
184
Member Avatar for Kewne

Hi guys, Just wanna ask what the "::" is for? ex. CRM_ContactsCommon::get_my_record() Correct me if I'm wrong, the **CRM_ContactsCommon** is a class and the **get_my_record** is a function inside the class. Now, is the "::" works the same way like in java to access a function of a class? Thank …

Member Avatar for Kewne
0
190
Member Avatar for bazetwo

hello everyone, i am bazetwo. i am here to learn and also contribute ! hope i am welcomed ?

Member Avatar for Kewne
0
134
Member Avatar for webmastersachin

I am sachin pratap from new delhi, india and am a new user on this forum so I want to say hello to all friends on this site. please share your info with me...

Member Avatar for Kewne
0
204
Member Avatar for Kewne

I have a code: <body> <?php global $wpdb; $sql = ""; $sql = "SELECT * FROM emgAdmin"; $sql = "$sql INNER JOIN wp_posts ON wp_posts.ID = emgAdmin.ID_OfPost "; $ArrResult = $wpdb->get_results($sql); while ($emgAdminResult = mysql_fetch_object($ArrResult)) { echo($emgAdminResult->post_date); } ?> </body> and I'm getting an error that says,"Call to a member …

Member Avatar for Kewne
0
2K
Member Avatar for Kewne

Hi Guys,...Just wanna ask if what brand should I look for in a laptop. And what specs should I look for if I'll use it in programming, gaming, photo editing. Thank you in advance.

Member Avatar for rubberman
0
198
Member Avatar for Kewne

Hi, Does anyone here kbow how to get the post not the pages in a wordpress dashboar? This line of code: `$ArrResult = $wpdb->get_results("SELECT * FROM {$wpdb->posts} WHERE post_type = 'page' ");` and for the table I have something like this: `<td><?php echo $sampleResult->post_title ?></td` I thought this would get …

Member Avatar for Kewne
0
95
Member Avatar for Kewne

I have a code in php that is being echoed in html: $tblAccounts .= "<td width=\"100\"><input title=\"$objRow->AccountCode\" name=\"chkAcctField[$objRow->AccountCode]\" id=\"chkAcctField[$objRow->Description]\" value=\"chkAcctField[$objRow->AccountCode]\" type=\"checkbox\" $strIsChecked>" . ucwords($objRow->Description) . "</td>"; now may problem is this... I don't know how will I get the value of the checkboxes clicked by the user.... when the names …

Member Avatar for diafol
0
234
Member Avatar for Kewne

I have a query that used union all.. and produces a table like this: `+-------------+------------------------+-----------+--------------+ | Type | Name | IDNum | Warnings | +-------------+------------------------+-----------+--------------+ | M | sample | 2013-1 | 4 | | L | sample | 2013-1 | 2 | +-------------+------------------------+-----------+--------------+` now i made a while loop …

Member Avatar for pritaeas
0
1K
Member Avatar for Kewne

I have a query that starts like this... SELECT COUNT(A.FISH), COUNT(B.MEAT), COUNT(C.FRUIT).... now my problem is this, how could I count when I need to consider an expiration date for each column,...and the expiration dates varies for each column... Can I do this in one query? Or is there any …

Member Avatar for Kewne
0
244
Member Avatar for Kewne

I have a temp table that is used in a union. But it resulted an error saying "cant reopen table". I've read that I need to rename the tempTable. How could I rename a temporary table when I'm using the tempTable in a union?

Member Avatar for Athelas
0
313
Member Avatar for Kewne

Hi.... I'm new in Ubuntu and GNOMe... something I don't understand is that when I've used this command to uninstall my gnome sudo apt-get remove gnome* ...and then install it again using another command which I've also found in the internet... ...then reboot my laptop... I came up to a …

Member Avatar for Israel_1
0
234
Member Avatar for Kewne

Hi. I'm confuse on how I will create my temporary table. Need some clarification here. I want to create a temporary table that will hold some column and values. And later on I would alter/update the table to add another column and data with respect to the existing columns. ammm... …

Member Avatar for Reverend Jim
0
278
Member Avatar for Van1234
Member Avatar for Zheqbel
1
699
Member Avatar for Sockoiid
Member Avatar for jwenting
2
315
Member Avatar for gaylordcat

Just stopped by for the first time. I'm a old guy who just likes to play with code for no other reason than I find it fun. Because I know very little but practice a lot, I will from time to time ask questions. Daniweb may be a good site …

Member Avatar for asifalizaman
0
110
Member Avatar for Kewne

code code code code.... and of course your just human, you get tired, stressed out, exhausted and whatever you want to call it... so, what do you do to relax?

Member Avatar for Anima Templi
0
144
Member Avatar for Kewne

Hi... I'm seeking out some suggestions, ideas, or anything that could help... my .xl report is taking too long to generate... I'm doing this report under php and html but then It takes too long too generate... Is there any suggestion you could give me to fix such kind of …

Member Avatar for diafol
0
189
Member Avatar for Kewne

Hi guys....ammm...I created a table in one function and then used it in another function. The temporary table is created this way: $tmpTable = "tmpTable"; myCreateTable($intHandle,$tmpTable,$schoolYr,$semester); CREATE TEMPORARY TABLE $tmpTable type = heap SELECT Payment.No FROM (Payment INNER JOIN Othr ON Payment.Autokey = Othr.key) I am passing the table name …

Member Avatar for diafol
0
194
Member Avatar for jingda

I am sure most of you like animals here be it little furry ones or just a comapanion. So what types of animals have you kepts as pet before?

Member Avatar for <M/>
0
427
Member Avatar for Kewne

I have this line of code: $str = "$str<td><a href=\"javascript:Open($Row->ID , $Row->IDCode)\" title=\"click to open window...\">more...</a></td></tr>"; it works fine when the IDCode at the $Row->IDCode is a numeric but then it doesn't work anymore when the IDCode starts with a character. At my database the ID is int(11) unsigned and …

Member Avatar for Kewne
0
174