jqueryMobile与Php应用程序转换器到apk应用程序


jqueryMobile with Php application conver to apk Apps

我为wordpress网站制作了Jquery移动版。现在我正在寻找安卓开放市场的APK。有人能帮我更多的Jquery手机和PHP到APK应用程序的细节吗。

我是新来的。

谢谢

以下是Jquery mobile与PHP Wordpress的索引代码

    <ul data-role="listview" data-theme="b" data-filter="true" data-counttheme="e">
    <?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
    <li>
        <?php the_post_thumbnail(); ?>
        <h2> 
            <a href="<?php the_permalink(); ?>" data-transition="slidedown"><?php the_title(); ?></a> 
        </h2>
        <article> <?php echo the_excerpt(); ?> </article>
    </li>
    <?php endwhile; endif; ?>
    </ul>       

好吧,PHP是一种服务器端语言,你不能在android中运行PHP-jQuery网站,你可以用webview制作一个APK文件,whick在远程服务器中打开一个网站,但你不能在你的APK中在android应用程序中运行PHP网站。