Jump to content

jason213123

Members
  • Posts

    57
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

jason213123's Achievements

Member

Member (2/5)

0

Reputation

  1. hi i looking for a way to creat a picture like this: http://acp.com.pt/color.png how can i do that? thanks for your help
  2. hi, any one know how creat api to acess functions in a remote functions? thanks for your help
  3. hi, i looking for altertive of cpanel with whm too anyone know a good solution? thanks for your help
  4. hi, i looking for a class / script to download recursive files to a local folder. anyone know one that work fine? i have tested this class but for some reason this class do not (http://www.phpclasses.org/package/5960-PHP-Recursive-Upload-and-download-files-via-FTP.html) download the files for the correct folders, the local folders don?t appear in the filename. thanks for your help
  5. hello, i looking for a editor like TinyMCE that we can add tables and other html stuff. in this editor like others he is not very good when we need resize the columns in this link there is a table that we can resize the columns very easy http://www.ita.es/jquery/jquery.kiketable.colsizable.htm any one know a goog editor that is able to do this? thanks for your help
  6. hi, try load a xml with this struture: <file> <one> <a> test </a> <array> <arra1> silver </arra1> </array> </one> <one> <a> test </a> <array> <arra1> silver </arra1> </array> </one> </file> i can load all values except the values that is inside of the array foreach($xml->children() as $child) { echo $child->a; //with this i can receive the value test } but i need load the array->arra1 too. i can i do that? thanks for your help
  7. hi, i have this xml <m time="2012-03-09T11:14:20+00:00" timestamp="1331291660"> <ma id="1219457" xsid="0"> <time>2012-03-09T19:30:00+00:00</time> <gru id="8388">Nacional</gru> <ht id="2325">Teste</ht> <at id="8919">Teste2</at> <results /> <mar did="6" name="Under"> <ofr id="95690814" n="2" ot="0" last_updated="2012-03-09T11:13:35+00:00" flags="1" bmoid="1000095485"> <ors i="0" time="2012-03-08T18:59:22+00:00" starting_time="2012-03-09T19:30:00+00:00"> <a1>4</a1> <a2>3.5</a2> <a3>4</a3> <a4>2</a4> <a5>8</a5> </ors> </ofr> </mar> </ma> </m> and this code: $DOMDocument = new DOMDocument( '1.0' , 'utf-8' ); $DOMDocument->preserveWhiteSpace = false; $DOMDocument->loadXML( $xml ); foreach ( $DOMDocument->getElementsByTagName( '*' ) as $Nodes ) { foreach ( $Nodes->getElementsByTagName( '*' ) as $Node ) { $Data[ $Node->parentNode->nodeName ][ $Node->nodeName ] = $Node->nodeValue; } with this code i can load the value of the a1 and a2 etc but i need load the name of the mar ( Under ) and the did. how can i do this? thanks
  8. hi, i have a configuration file with this content for example: test = "100"; teste2 = "300"; now need change the test from 100 to 300, i just want use something like this: function ( "test" , 300 ); how can i do that? thanks for help
  9. hi, yes but i also need the default value for example date =null; or date =1; etc so i think in use a form in the script that can creat in same time a field in the database and the same value in the class. in that form i can define the type of the field and the default value that i will be stored in the class file
  10. hi, i have a class file that have all values from a database fields. for example: class mospedidos extends mosDBTable { id = null; date =null; } class mosunder extends mosDBTable { id = null; name =null; } each time i creat a new field in the database i need add the same field in the class file, what i want is a way using php to add that new field to the class file. i just need a way to open the file and the class name that i give and add the value and save the file. how can i do this? thanks for your help
  11. hi, no because the fields name are diferent and i need repeat this steps for others databases that is working 24 / day thanks
  12. hi, i looking for a WYSIWYG HTML that work in the browser. I have found this http://phphtmledit.com/ that work like i need but i looking for a alternative that cost less or opensource any one know something like this? thanks for your help
  13. hi, i have two databases and each one have diferent fields names and tables and i want a creat a map for each field and each table and export to a database to the other i have tested the mysql migration but i canĀ“t choose a diferent table in the destination database. any one know a software that does this? thanks a lot for your help
  14. hi, how can i add a pantone like this http://img.pai.pt/mysite/rendermedia/42/45/2/192881b9-8e84-44ff-b109-bac29d7726de_LARGE.jpg ? thanks for your help
  15. hi, i creating my reports using the ireport and that works very fine. now i looking for a way to creat the same report online for example using a flash report designer. anyone know a solution for creat/design a report online? thanks for your help
×
×
  • 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.