Jump to content

ivanpanchev

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by ivanpanchev

  1. Hi, I was pretty surprised recently. There are cross platforms like appmobi, titanium stuido (and maybe more) that are making possibe the development ot mobile applications with Javascript/HTML5/PHP. And they work on iOS and Android. It is possible now to write once and it will work on almost all mobile platforms. Sounds just great! What do you think?
  2. ivanpanchev

    MVC help!

    Just a suggestion: You can pass boom[1] as parammeter of function boom[0]. Then explode boom[1] inside boom[0]. Hope helps.
  3. Yes, that worked for me Ben. I had the same issue and spend some time researching. There is also another solution. In ajax call instead of $.ajax({ type: "POST", url: "<?php echo SITE_PATH;?>/app/cms/edit.php", data: dataString, cache: false, success: function(html) { $('#cboxLoadedContent').html(html); } }); can be used that: $.ajax({ type: "POST", url: "<?php echo SITE_PATH;?>/app/cms/edit.php", data: {id: id, field: content, type: type}, cache: false, success: function(html) { $('#cboxLoadedContent').html(html); } }); and content variable gets it's value as usual: var content = $('#field').val();
  4. Hi, I bought killerphp video package Complete Web Programmer (with PHP and Javascript). And I'm verry happy with it! Thank you guys for this wonderfull video tutorial! I have 3 years of php nad javascript programming. I'm looking now for an open source project. I'll be verry happy to particpate as developer in an open source project, because my prortfolio is limited and I want to expand it with something professional. Can you give me some advise, some example of open source projects where I can participate as developer? Thank you Ivan
×
×
  • Create New...