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.8K People Reached
Favorite Tags

44 Posted Topics

Member Avatar for Duki
Member Avatar for christina>you
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
121
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
140
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
328
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
188
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
330
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
415
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
150
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
186
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
196
Member Avatar for bazetwo
Member Avatar for Kewne
0
134
Member Avatar for webmastersachin
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
204
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
96
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
238
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
248
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
345
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
239
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
294
Member Avatar for Van1234
Member Avatar for Zheqbel
1
699
Member Avatar for Sockoiid
Member Avatar for gaylordcat
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
191
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
199
Member Avatar for jingda
Member Avatar for <M/>
0
428
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
175
Member Avatar for happygeek

gee...women buy more than men (just an opinion don't get mad at me)....but I didn't expect that they are bothered of online transactions... woman are more than being fickle-minded....

Member Avatar for medmainfomatix
0
443
Member Avatar for azareth

Well dude... As for me it goes something like this....when I start coding I usually use comments and later clean it up leaving only the things which will indicate what it is and what it does.. amm yeah something like that….

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

Hi,... I tried to run the code using the java emulator but it only provides one phone emulator at a time I couldn't see if it does pass the word, what I did is that I downloaded the sun wireless toolkit which can run multiple number of mobile emulator. I …

Member Avatar for Kewne
0
248
Member Avatar for Kewne

is it going to be possible to have a connection if I create a J2ME (netbeans) as client and vb.net (2010) as the server?

Member Avatar for Kewne
0
231
Member Avatar for Kewne

Hi...I need some help here... I need some suggestions and recommendations on J2ME simulators... I'm using NetBeans, BlueCove, Windows 7 I'm working on a project related to bluetooth programming... Thank you in advance....

Member Avatar for peter_budo
0
205
Member Avatar for Kewne

I'm confuse ..... What do I really need to install in order to use the API for bluetooth? I'm going to develope a wireless mobile application that can communicate with my laptop....

Member Avatar for Kewne
0
208
Member Avatar for kahindi
Member Avatar for bipul364
0
66
Member Avatar for Scuppery
Member Avatar for Kewne

well... I have this code... <?php function ARG_FF() {?> <!--AIR RESTRICTION GAUGE--> <td><select name="gauge"> <option value="8">8</option> <option value="11">11</option> <option value="15">15</option> <option value="22">22</option> <option value="25">25</option> </select></td> <!--FUEL FILTER--> <td><select name="filter"> <option value="20">20%</option> <option value="40">40%</option> <option value="60">60%</option> <option value="80">80%</option> </select></td> <?php }?> and I use it multiple times.... then here comes mysql: …

Member Avatar for Kewne
0
100
Member Avatar for Bluescreendeath

Hi Glenn....you'll surely learn in this forum...just seeing there post and the things that are being solved by this experts, oh gee man their good...

Member Avatar for JorgeM
0
103
Member Avatar for GuyClapperton

reading this article, I decided to visit fs..and I logged-in... it said: "We're glad you've decided to join our fantastic new gaming platform. We migrated your details from your old Friendster profile. Here they are for your review: " ...I've met fb, I forgot about fs....I'm bad....so, this article throws …

Member Avatar for Kewne
0
146
Member Avatar for Kewne

well I have this code, at first it was working perfectly....then a little modification just caused an error. I want to know what are the possible causes of this error Notice: Undefined index: CSM_blackmere_portside2_1 in C:\xampp\htdocs\PMS\F51-AI_insert.php on line 16 aside from, of course being defined .. i'm thinking of something …

Member Avatar for Kewne
0
130
Member Avatar for The Dude
Member Avatar for Kewne
0
316
Member Avatar for Kewne

ammm...I have this code <table border="1" name="myTable" id="myTable"> <?php $nRow = $_GET['rowLength']; $nColumn = 7; for($i=0;$i<$nRow;$i++){ echo "<TR>"; for($i=0;$i<$nColumn;$i++){ echo "<TD><INPUT TYPE='text' NAME='' VALUE=''/></TD>"; } echo "</TR>"; }?> </table> now, I'm trying to pass js variable to php variable on the same page.... but I'm having this error: Undefined index: …

Member Avatar for Kewne
0
212

The End.