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

14 Posted Topics

Member Avatar for eantz

Hi.. Is it possible to redirect the page with javascript but keep the data alive and can be read or used by the destination page? I use PHP scripting..

Member Avatar for Taywin
0
241
Member Avatar for eantz

Hi.. I have a blog and one day I post a redirect page tutorial with php script within it. I saw that tutorial from a web and I want to post it to my blog too.. here is the script : [code=php] <?php function redirect($url) { if (!headers_sent()) { header("Location: …

Member Avatar for advertigo.net
0
338
Member Avatar for eantz

Hi.. I have an XML file like this <?xml version="1.0" encoding="UTF-8"?> <player> <user> <username>destiya</username> <password>destiya</password> </user> <user> <username>dian</username> <password>dian</password> </user> </player> then I want to parse it with javascript and here is my javascript code : function loadXML(path) { var xhttp; xhttp = new XMLHttpRequest(); xhttp.open("GET", path, false); xhttp.send(); return …

0
55
Member Avatar for eantz

hi, I just want to start an application with vb.net I have enough basic knowledge in vb.net And now I want to try use alternative UI for my application. For example I want my application look likes office :) or I want a better tab control So, where can I …

Member Avatar for kvprajapati
0
160
Member Avatar for eantz

Hi everyone, I have a project that need an API but still in progress. But, I have a problem with this API authentication. The authentication method I want to use is oAuth. But, unfortunately I don't have any acknowledgement about authentication. I've read many tutorial but I still don't know …

Member Avatar for Mouche
0
185
Member Avatar for eantz

Hi there, Someone using symfony? help me, please.. I have form class that I embed to another one.. In the embedded form, I have multiple checkboxes. But when I try to save it and I check some value of checkboxes, the error said "SQLSTATE[HY093]: Invalid parameter number: number of bound …

Member Avatar for eantz
0
277
Member Avatar for eantz

Hi all, I'm still a newbie in programming world.. And I just realized that PHP has a function "mysql_insert_id()" to get the most recent id that generated by AUTO INCREMENT. But, before I use it, I want to know Is it safe to use it when many users insert data …

Member Avatar for phpbeginners
0
187
Member Avatar for eantz

Hi all, I just want to ask you a simple question. I can't find the answer anywhere. How can I change the alert's title in javascript?

Member Avatar for Airshow
0
152
Member Avatar for eantz

Hi, I want create a page which has animation at the bottom of that page. I use jQuery to do that.. this is the way I do it [code=html] <a href="#" class="animation">Animate this</a> [/code] and this is the jquery [code=javascript] $(document).ready(function() { $('a.animation').click(function(e) { e.preventDefault(); //animation goes here; }); }); …

Member Avatar for eantz
0
185
Member Avatar for eantz

Hi, I'm developing a new online store now and I choose Joomla Virtuemart as its base. The maintenance is quite easy but I still found some problem that I can't solve. First, I can't set the virtuemart component in the start up page when I call my site. Users have …

Member Avatar for Egypt web
0
86
Member Avatar for eantz

Hi.. I'm newbie here.. I have a problem with my login and logout script.. Here is the login script: [CODE]<?php $q = "SELECT * FROM members WHERE username='%s' AND password='%s'"; $q = sprintf($q, $username, $password); $q = mysql_query($q); if (mysql_num_rows($q) > 0) { $_SESSION['id'] = $q[0]['id']; $IS_LOGGED_IN = true; } …

Member Avatar for BzzBee
0
438
Member Avatar for eantz

Hi.. I'm designing a web that contain Google Custom Search Engine and I put the result in a page. But it doesn't match with the template I've already made because the IFrame is too wide.. [code=html] <script type="text/javascript"> var googleSearchIframeName = "cse-search-results"; var googleSearchFormName = "cse-search-box"; var googleSearchFrameWidth = 600; …

Member Avatar for eantz
0
136
Member Avatar for eantz

Hi.. I want to develop interactive website for kids.. but I don't have any idea for concept and layout yet. How can I get the concept?!? Or if someone have an idea, I really appreciate it..

Member Avatar for laura_ci
0
101
Member Avatar for Lolalola

Why do you want to change the auto increment column? I think Column with auto increment feature will be primary key. so it doesn't need to be changed..

Member Avatar for eantz
0
91

The End.