Search results

  1. D

    Asp/asp .net/php

    It was a tough choice. However, it should be noted that PHP is a language and ASP.NET is a framework... So I'll compare C# and PHP also. I started out with PHP about 5 years ago, tooka few years 'off' from it and learned C++, and then came back to it around 2 or 3 years and started using /...
  2. D

    exe-to-app

    Not really. Since it's an exe, it's probably gonna be a native Win32 executable, which will have no connection to Java. The low level of operations in the binary are probably not at all possible in Java. The closest you might be able to get with a conversion is if it's a .NET executable, whereas...
  3. D

    XML parsing error

    What is a multiword XML field? To me, and I'm guessing to standard XML parsers, it is simply a field with attributes. The only 'multiword' XML field I could think of explicitly scoped in a namespace, separated by underscores, or a period, but the last two are only different identifiers / naming...
  4. D

    Corriendo una funcion de php en file html

    También, podrías añadir a tu archivo .htaccess que la extensión HTML se debe ejecutar por PHP así: AddType application/x-httpd-php .html Pero eso permite que todas las páginas HTML sean ejecutadas por PHP (dado que se ubicara en tu directorio root de www). Al otro lado podrías poner tu contador...
  5. D

    req :Beautify table

    This site came from the search that rockee gave you: http://www.cssjuice.com/25-rounded-corners-techniques-with-css/ If you look at these, you should find the one that fits your scenario.
  6. D

    ext grid with PHP

    Tengo un ejemplo de hacer una tabla de informe de un basedato. Aquí es, en inglés. Pero quizás sea más complejo que lo que quieres, porque requiere el librería de Thacmus. EDIT: Whoops! Ese ejemplo no enseña algo con un intercambio con el basedato. Así podrías hacer: class Test extends DBI {...
  7. D

    some coding required.. will pay upto 1300 credits

    You might want to supply this link: http://code.google.com/apis/apps/gdata_provisioning_api_v2.0_reference_php.html It's the PHP 'port' for the GDATA Provisioning API. It could help them have something to work off. You might also want to check if this package is on PEAR, so you could install it...
  8. D

    Configuring FileZilla (linux)

    What exactly are you filling out in the Site Manager? As long as your information is correct, it should be good...
  9. D

    Altering MySQL Database

    What API are you using? Different API's have different ways of connecting. Ex: The basic mysql driver gets connection information by passing each piece as an argument.
  10. D

    Creacion de dll para php

    ¿Por qué te preocupas con que los usarios no pueden ver la fuente? Si usas sólo PHP, es ejecutado al lado del servidor y sólo envia el output al cliente - no pueden ver la fuente menos que les dejes (por cambiar el extensión o algo así). También no tienes que tratar de hacer el DLL funcionar con...
  11. D

    Poll: Would you like MagickWand to be installed?

    Googled "php imagemagick", and found this, which also referred to imagick, which is on PECL. A nice thing about it is that it has OOP. Here's an example from the cvs for making thumbnails.
  12. D

    Free Software Suggestions

    Some more: Category: Operating System Name: Ubuntu Desc: An easy-to-install, easy-to-use GNU/Linux operating system 'for humans' based on Debian. One of its prime features is the Debian package management system - installing new software is only a click away. Comes preinstalled with many of the...
  13. D

    Creacion de dll para php

    ¿Quieres subir la dll al servidor? Has de tener la compatibilidad en cuenta, porque los servidores aquí functionan en Linux, mientras dlls son principalment para Windows. Si quieres usar .NET, tienes que checar si los servidos lo tienen. ¿Qué quieres hacer con la dll?
  14. D

    Ubuntu?

    The installation process for Ubuntu is pretty simply. Get yourself a CD, either by burning yourself an ISO downloaded from the main site, or ordering one online. Reboot your computer with the CD in the drive, it should boot off of the CD, and it'll give some options on how to boot. and by...
  15. D

    subir sql pesada

    Si no hay otra opción, podrías escribir tu propio código sencillo que toma, 'decompresa', y ejecutar el archivo en gzip. Uso algo como eso para limpiar mi demo sitio cada dos días. Si se utiliza mysqli será fácil. [Trataré de postear más informe sobre éste] Edit: Buscaba por el PHP Manual...
  16. D

    [Ayuda] Como modifico este codigo para hacerlo FAQ

    Y también en lugar de "visible" se puede usar un string en blanco, "". Me parace que quieres hacer un toggle así: function cambio(id) { var capa=document.getElementById(id); capa.style.display=(capa.style.display=="" ? "none" : ""); } Creo que "document.getElementById" y "style.display" son...
  17. D

    FTP client for Linux

    There's several different ways to install packages on Debian based systems (Ubuntu is one). You can use it from the command line as tnl2k7 said with apt-get / aptitude, use the terminal interface in aptitude (just run `sudo aptitude`), or you can use the package management GUIs. If you have the...
  18. D

    how often do you re-install windows?

    I used Windows XP for the past 4 or 5 years, with one new computer last year. Only had to reinstall once, and that was when my brother tried to install a video driver so he could connect two video output peripherals to the computer (watching stuff on our TV). However, I had all of my 'content'...
  19. D

    PHP or Java Script?

    PHP and JS both have their own specific attributes that are catered to their 'audience'. PHP is meant for server-side request processing, as everyone has pretty much said. JS is meant for client-side interaction and processing. It can interface directly with the DOM, as well as do its own thing...
  20. D

    Open Source Platform help

    There's Gallery2 which you could use, and plenty others.
Top