Jump to content

anujgarg

Members
  • Posts

    202
  • Joined

  • Last visited

About anujgarg

  • Birthday 04/05/1983

Contact Methods

  • Website URL
    http://www.zuberacorp.info

Profile Information

  • Gender
    Male
  • Location
    India

anujgarg's Achievements

Advanced Member

Advanced Member (4/5)

0

Reputation

  1. Hi, we've just launched our official website for web development and internet marketing. I will like to have feedback (good or bad), most specifically on : a. What do you think about the design ? b. Do you like the content ? c. As we are an organization and we try to drive customers to grow their business, is it possible to attract them by this site and our portfolio ? d. other Any recommendation ? Thanks
  2. Hello All, Thanks for your valuable comments. I've updated my website to a great extent (popup ads are still there, working on the same). Please review the same and let me know the other critiques. Thanks in Advance
  3. I am wondering how often a user clicks on the banner/text ads displayed on a site? Most of the time text ads mention website name and users just copy paste on the new tab. Then what's the purpose of having those ads on our site ?
  4. Hi, I am looking for critics on my classifieds site that I created in my spare time. All feedback are welcomed negative or positive. website url: www.zubera.co.in test username: anuj3149@gmail.com test password: suresh I used the template provided by OSClass and I really appreciate it. Thanks in Advance
  5. Hi Everyone, I am trying to integrate payment gateway for my web application for which I have made PHP/Java Bridge successfully. I am using e24PaymentPipe class in my code but not able to find this class/plugin after searching a lot over google. If anyone has worked on e24PaymentPipe class/plugin, please share it with me. TIA Anuj Garg
  6. For inserting record: $query = "SELECT * from jos_table"; $rslt = mysql_query($query) or die(mysql_error()); $total = mysql_num_rows($rslt); $row=0; while($content_var = mysql_fetch_assoc($rslt)) { foreach($content_var as $key => $val){ $columnPath->column = $key; $value = $val; $client->insert($keyspace, $row, $columnPath, $value, $timestamp, $consistency_level); } $row++; } For displaying record: for($i=0;$i<$total;$i++) { $keyUserId = $i; $result[$i] = $client->get_slice($keyspace, $keyUserId, $columnParent, $predicate, $consistency_level); } print_r($result);
  7. Riwan, I am using cassandra and trying to move MySQL data to it. This is the format that cassandra displays after inserting the records in its table. I have displayed the output in my post above...if you want to see the code, please let me know...
  8. Thanks for the reply, thorpe...but nothing is being displayed on page.
  9. ok...so let me explain it: I have an array of objects that contains key-value combination. I have to display that key value pair in my result. For ex., in first element of array we have: [name] => access [value] => 0 [timestamp] => 1275304054 I need to fetch value of 'name' that is "access" and value of 'value' that is "0". Hope it is clear now...
  10. Hi Everyone, I am having an array in this format: Array ( [0] => cassandra_ColumnOrSuperColumn Object ( [column] => cassandra_Column Object ( [name] => access [value] => 0 [timestamp] => 1275304054 ) [super_column] => ) [1] => cassandra_ColumnOrSuperColumn Object ( [column] => cassandra_Column Object ( [name] => activation [value] => [timestamp] => 1275299259 ) [super_column] => ) [2] => cassandra_ColumnOrSuperColumn Object ( [column] => cassandra_Column Object ( [name] => alias [value] => entertainment [timestamp] => 1275304054 ) [super_column] => ) ) I want to convert it in the following format: (Syntax) => name:value name:value (eg.) => access:0 activation: alias:entertainment Please suggest how can I do that? Thanks in advance Anuj
  11. More specifically, the new table should be look like: id parent_id 10 0 11 0 12 11 13 12
  12. Hi, I am writing a data migration PHP script. I have a table with following structure: id parent_id 1 0 2 0 3 2 4 3 This table data needs to be migrated in a different table that already contains some record. So, the ids will be different here (lets say following): id parent_id 10 0 11 0 12 2 13 3 But, as we are seeing the parent_id is same in new table. Here comes my problem. I want to change the parent_id according to modified (new) id in new table. How can it be possible? Please suggest... All suggestions will be highly appreciated. Regards, Anuj
  13. Hi Everyone, I am facing a problem while managing a bundle of checkboxes. The scenario is as follows: I have two checkboxes at top c1 & c2. Further, I have s1 & s2 sections with their respective subsections. Now, I have some more checkboxes that have been kept under these sections and subsections like: c1 c2 s1 cb s1_1 cb s1_2 cb s1_3 s2 cb s2_1 cb s2_2 cb s2_3 When I click on c1 then the checkboxes respective to s1 and s2 are checked. But when I click on c2 then the checkboxes respective to s1 only should be checked. How can I perform this task? Please suggest... TIA Anuj Garg
  14. Hi, I have successfully applied server side validation in my form and is working properly. The problem is: when I am on 'edit' form, it is properly displaying the values fetching from database. But whenever there is server side validation occurred after submitting the form then the new entries that I have filled in that form getting lost. It shows the same entry coming from database. How can I maintain my new entries in the form while editing?? Please suggest... Thanks AG
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.