Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: wolf73
  • Order by date
  1. wolf73

    what is wrong with this code?

    Thanks for your replies.
  2. wolf73

    for loops

    thanks a lot
  3. wolf73

    what is wrong with this code?

    I want to delete all the selected (checkbox checked)items from the bag. I am trying to undersnatd the folowing code. It is suppose to produce URL like https://administration.irfan.dev/integration/delete_multiple_internal_ fields?package_id=114&items=211,212 instead it give me lot of junk...
  4. wolf73

    what is wrong here

    got it ..... thanks a lot
  5. wolf73

    anyone using edit plus

    I was wondering if anybody using the php editor EditPlus. Is it possible to search for a particular php file or search for a function in your directory in edit plus?
  6. wolf73

    what is wrong here

    I am geting error at $this->playarray();, isn't this how we can call memebr function of a class? <?php class myarray { function playarray() { $temparray= array(); $temparray = array ( 'a' => 'you' , 'b' => 'me', 'c' => 'they' ); foreach ($temparray as...
  7. wolf73

    are these two sql same?

    thanks a lot
  8. wolf73

    are these two sql same?

    Are inner joins just regular joins? will these two SQL then the same? and will produce same results SELECT field_mappings.id AS field_mapping_id, internal_fields.id AS internal_field_id, external_fields.id AS external_field_id, internal_fields.field_name AS static_name...
  9. wolf73

    whats wrong with this sql

    I don't where i am making mistake on this sql SELECT field_mappings.id AS field_mapping_id, internal_fields.id AS internal_field_id, internal_fields.field_name AS static_name, FROM field_mappings INNER JOIN internal_fields ON internal_fields.id = field_mappings.id WHERE internal_fields.id...
  10. wolf73

    for loops

    I have never seen these kind a for loops, foreach ($buyers as $buyer=>$weight) what are we doing with in ($buyers as $buyer=>$weight), especially $buyer=>$weight?
  11. wolf73

    is there anything wrong with the code

    thanks a lot
  12. wolf73

    what are they doing in line 3

    thanks, on this code var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onComplete: validate_offer_id} ); They are making an object myAjax, but thats it, they are not using that object. Like normaly we do in other OOP myAjax->callfunction(); etc
  13. wolf73

    what are they doing in line 3

    Hi, I don't understand what they doing in line 3, I did not know one can create object in javascript. and then why they have return with in if statament? function package_validate() { if ($('package_offer_id').value != "" && valid_offer == false) { var url =...
  14. wolf73

    how exceptions work?

    How does exceptions work, are these just error message, or do they stop the program right there. throw new DataInconsistancyException("No of colums in the table do not match number of colums in the array");
  15. wolf73

    is there anything wrong with the code

    Hi, I am trying to learn OO php, is there any thing in the following code, which is totaly wrong. private function get_data($filename,$table_columns) { $return_array; //$row = 1; $handle = fopen(".$filename.", "r"); while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {...
  16. wolf73

    php syntax question

    thanks alot
  17. wolf73

    desperate help need

    thanks, don't I have to use this operator, like $this->call_updater();
  18. wolf73

    desperate help need

    if I have something like this, how can I call (i mean the syntax ) to call function call_updater from function test_table_XYZ1() class MuzeUpdater { public function test_table_XYZ1() { want to call the private fiuunction } private function call_updater() {...
  19. wolf73

    desperate help need

    I am very new to Objected Orientated, I am trying to do something like the following. Create a class called MuzeUpdater. In this class make several functions for updating our db. Have a function for every table, and in turn have a function that calls all the necessary functions to do the...
  20. wolf73

    php syntax question

    I am trying to understand this code. I don't undersnatd the sytax here, we are assigning the value "NO" to what? $GLOBALS['appdata']->statsview[1]['cluster_id'] = "NO";

Part and Inventory Search

Back
Top